Arduino-SerialCommand icon indicating copy to clipboard operation
Arduino-SerialCommand copied to clipboard

A Wiring/Arduino library to tokenize and parse commands received over a serial port.

Results 14 Arduino-SerialCommand issues
Sort by recently updated
recently updated
newest added

Separated buffer building and command parsing from serial port reading.

This change recognizes when the user hits return on a blank line. I needed to handle this case for my project (a blank line is used to wake the device...

I've been tracing a problem with the command strings frequently being corrupted after using `addCommand` several times. I believe that [the following line in SerialCommand.cpp](https://github.com/kroimon/Arduino-SerialCommand/blob/master/SerialCommand.cpp#L53) is a bug: ``` arduino...

Hi! I'm trying to use SerialCommand from inside another class (library). But whenever I try to add a command I get the following compiler error: addCommand(const char [10], )' Any...