Releases: Seithan/EasyNextionLibrary
Releases · Seithan/EasyNextionLibrary
Release 1.0.6
Release 1.0.5
- Updated
readNumber()
function for faster response and more accurate reading. - Added the
readByte()
function for reading Serial buffer from user code - Added
easyNexReadCustomCommand()
function with a weak attribute and will be created only when user declares this function in the main code. The motivation to move this function out of the library's files, comes from Ricardo Reis thanks to his issue #15 - Added public variables
cmdGroup
andcmdLength
ONLY for read custom commands, stores the command group ID and the length of the command
Release 1.0.4
Added the readStr() function for reading a String from Nextion
Release 1.0.3
Two more examples were added.
- The first one demonstrates how to use EasyNextionLibrary with waveforms.
- The second one demonstrates how to use EasyNextionLibrary with progress bars
Enhanced Initial Release
- Remove the private function
readCommand()
from the mainEasyNextionLibrary.cpp
file. A new file is created namedreadCustomCommands.cpp
, in order to make easier the modifications for it when using the custom protocol. - Return Error code added and to other cases of
readNumberFromSerial()
. When failing to read a number, we return the number 777777 instead. The cases of having a 777777 return:- Waiting bytes have not come to Serial timeout
- Command start character is not found in Serial timeout
- The waiting length of the byte package has not come to Serial
- Bytes on Serial are not the expected
- The function readNumberFromSerial() is improved, making reading values more accurate, due to hardware or Serial problems.
Initial Release
The initial release