Skip to content

Releases: ajshea/OpenLog

v4.0

07 May 18:32
3db491c
Compare
Choose a tag to compare
v4.0 Pre-release
Pre-release
Update README.md

v2.51 Improved command prompt parsing (now ignores '\n')

07 May 18:30
Compare
Choose a tag to compare
We now ignore the \n character when parsing characters from the command prompt. This makes it easier to create code on a microcontroller that correctly controls OpenLog. Previously, println or sprintf commands were adding a \n to the end of the string that would confuse OpenLog. One way around this if you have previous versions is this
 sprintf(buff, "new blah.txt\r");
 Serial.print(buff); //No println, use \r in string instead

Also - added a CommandTest sketch to demonstrate how you can control OpenLog from a microcontroller / automate the command prompt