-
Notifications
You must be signed in to change notification settings - Fork 323
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Append text fonction for NexText object #93
Open
VincentFrangi
wants to merge
36
commits into
itead:master
Choose a base branch
from
VincentFrangi:AppendText
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
…deMcu, based on original Nextion Arduino library - Added support for NodeMcu/esp8266, Software serial, Software serial can be used with arduino also - Added support for global Nextion objects. (Optional page parameter added in the components) - NexVariable corrected to use int32_t data type - NextText corrected to return tru/false, and string length is returned in len parameter - NextText String object support added - other small bug fixes done - Added to support global Nextion events like CurrentPageIdCallback,systemStartUpCallback,... - examples Nextion editor projects corrected -For some reason I need to remove NexUpload.h & NexUpload.cpp when using the library in PlatformIO some platform header files not found spontaneously when building, adding the libray path in platformio.ini did not help.
Wavefor corrections: - Return values corrected - Inheritance correction to NexToutch to support toutch events - corrected set/get channeö colour to support all channels - added value scale, now possible to define UI min /max value. Added value is then scaled base on defined min/max value and given component height in pixels (component support max 255 pixel height)
- nextInit() baud rate paramenter added - Transpared data suport added - Waveform auto scaling corrected, multiple values add support added, Clear component support added
c++ std library usage moved to optional: - NexConfig #define STD_SUPPORT - std:function<> replace with c style function pointers - functions that used std::vector, c style variants added
nextLoop function rewriten so that more fault/delay tolerant. NexWaveform addValue more fault tolerant
-Backward compatinility issue: - systemStartUpCallback function pointer name corrected to match Nextion functionality/documentation new name: nextionReadyCallback - Error code list updated (NexHardware.cpp) - nextionStartupCallback function added. Called when when Nextion has started or reset
- NexVariable::setValue datatype corrected jyberg#2 - DEBUG_SERIAL_ENABLE changed to NEX_DEBUG_SERIAL_ENABLE - Serial.readBytes( implementation not used anymore, own implementation instead. Because of softwareSerial readBytes functionality is not reliable enough.
Include softwareSerial.h moved inside USE_SOFTWARE_SERIAL block
getValue and getText doesn't work jyberg#9 corrected functions timeout parameter chaned from uint32_t to size_t
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
I add simple appendText function to NextTex object, which is really useful.