Skip to content

Releases: Seithan/EasyNextionLibrary

Release 1.0.6

01 Feb 14:02
58eb985
Compare
Choose a tag to compare

Corrected line 264 of EasyNextionLibrary.cpp, where the "=" should be "==".

if(_endOfCommandFound == true)

Thank you Denis, Gixy31

Release 1.0.5

16 Dec 19:07
8ef3ab2
Compare
Choose a tag to compare
  • 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 and cmdLength ONLY for read custom commands, stores the command group ID and the length of the command

Release 1.0.4

24 Jun 17:55
6e755d5
Compare
Choose a tag to compare

Added the readStr() function for reading a String from Nextion

Release 1.0.3

15 May 19:52
1d10618
Compare
Choose a tag to compare

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

15 Apr 14:21
f90d138
Compare
Choose a tag to compare
  • Remove the private function readCommand() from the main EasyNextionLibrary.cpp file. A new file is created named readCustomCommands.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

07 Apr 21:15
19f9ddf
Compare
Choose a tag to compare

The initial release