Skip to content

Mingyu-Kim/Arduino-SerialCommand

 
 

Repository files navigation

SerialCommand

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

additional usage for using custom serial object.

  • With default (Serial)
#include <SerialCommand.h>
SerialCommand parser;
  • With Custom Serial
#include <SerialCommand.h>
SerialCommand parser(Serial2);
  • With Custom Serial, and custom debug
#include <SerialCommand.h>
#define SERIALCOMMAND_DEBUG
SerialCommand parser(Serial2, Serial3);

The original version of this library was written by Steven Cogswell (published May 23, 2011 in his blog post "A Minimal Arduino Library for Processing Serial Commands").

This is a heavily modified version with smaller footprint and a cleaned up code by Stefan Rado.

About

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

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C++ 100.0%