Arduino-CmdMessenger
Arduino-CmdMessenger copied to clipboard
CmdMessenger Communication library for Arduino & .NET
1.) fixed: 3x Serial left instead of 3x comms 2.) make readBin() safe for less received bytes (see issue #38) 3.) fixed some missing unescape() (see issue #39)
Encountered the following error when attempting to compile a sketch using CmdMessenger: ``` Arduino-CmdMessenger/CmdMessenger.cpp:492:9: error: invalid conversion from 'char' to 'char*' [-fpermissive] return '\0'; ``` The function is defined to...
The added explicit type cast fixes the compile errors described in issue #49.
declare callback list only when MAXCALLBACKS != 0 reduce memory and binary footprint. the code actually run faster with a giant switch-case as the default handler...
reduce compiler warning...
`max()` and `min()` were changed from macros to templates in ESP8266 core for Arduino 2.4.0. This change causes calls to these functions with arguments of different types to cause a...
GitHub uses the [licensee](https://github.com/benbalter/licensee) ruby gem to detect the license type of the repository. licensee [uses](https://github.com/benbalter/licensee/blob/master/docs/what-we-look-at.md#known-licenses) the license texts from [choosealicense.com](https://choosealicense.com/) so if the text of your license file differs...
environment: Arduino UNO Arduino IDE 1.6.11 Visual Studio 2015.3 Windows 10x64 prepare CommandMessengerTests: var device = arduinoNano; PortName = "COM7" run CommandMessengerTests (x86, Release) ``` *** Test Summary **** Some...