Code Monkey home page Code Monkey logo

erriezserialterminal's Issues

Add case insensitive commands

It would be nice if the command string wasn't case sensitive.

Something along the lines of adding it as an OPTIONAL parameter to addCommand().

This could be implemented by using strupr() or strlwr() in addCommand() when adding to the _commandList . Then use the same (lower or upper) function in the readSerial() function. Specifically here:

if (strncmp(command, _commandList[i].command, ST_NUM_COMMAND_CHARS) == 0) {

The conversion would only be carried out if configured to do so.

Error detecting Command string same start

I have discovered a little errorin the comparison of the command string.
It's like it takes the first that matches part of the string.

I have the following commands but the code always runs it's like i entered the first command "Setting_Ind_Bom"
so both "Setting_Ind_Port" and "Setting_Ind_Vejslojfe" get detected as "Setting_Ind_Bom"

term.addCommand("Setting_Ind_Bom", cmd_Setting_Ind_Bom);
term.addCommand("Setting_Ind_Port", cmd_Setting_Ind_Port);
term.addCommand("Setting_Ind_Vejslojfe", cmd_Setting_Ind_Vejslojfe);

Using Serial1 or Serial2, or multiple serial ports.

I'm running on an ESP32 and I need a console to be on two serial port, both Serial and Serial1.
Would this be possible?
The trick here is that Serial is the normal serial that the boot loader etc uses, this port is used by a user to connect to the board and read/write settings. Serial1 is connected to a Nextion LCD that will write commands and poll for data. Having the same console interface on both serial port makes it all a lot easier.

Serial2 is used for modbus communication.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.