5 --------------------------------------------------------------------------------
9 Nextion Arduino library provides an easy-to-use way to manipulate Nextion serial
10 displays. Users can use the libarry freely, either in commerical projects or
11 open-source prjects, without any additional condiitons.
13 For more information about the Nextion display project, please visit
15 The wiki provdies all the necessary technical documnets, quick start guide,
16 tutorials, demos, as well as some useful resources.
18 To
get your Nextion display, please visit
21 To discuss the project? Request
new features? Report a BUG? please visit the
24 # Download Source Code
26 Latest version is unstable and a mass of change may be applied in a
short time
27 without any notification
for users. Commonly, it is
for developers of
this
30 **Release version is recommanded
for you, unless you are one of developers of
this
33 **Release notes** is at
38 Latest source code(master branch) can be downloaded:
41 You can also clone it via git:
50 All releases can be available from:
55 Offline Documentation
's entry `doc/Documentation/index.html` shiped with source code
56 can be open in your browser such as Chrome, Firefox or any one you like.
58 # Suppported Mainboards
60 **All boards, which has one or more hardware serial, can be supported.**
71 In configuration file NexConfig.h, you can find two macros below:
73 - dbSerial: Debug Serial (baudrate:9600), needed by beginners for debug your
74 nextion applications or sketches. If your complete your work, it will be a
75 wise choice to disable Debug Serial.
77 - nexSerial: Nextion Serial, the bridge of Nextion and your mainboard.
79 **Note:** the default configuration is for MEGA2560.
81 ## Redirect dbSerial and nexSerial
83 If you want to change the default serial to debug or communicate with Nextion ,
84 you need to modify the line in configuration file:
86 #define dbSerial Serial ---> #define dbSerial Serialxxx
87 #define nexSerial Serial2 ---> #define nexSeria Serialxxx
89 ## Disable Debug Serial
91 If you want to disable the debug information,you need to modify the line in
94 #define DEBUG_SERIAL_ENABLE ---> //#define DEBUG_SERIAL_ENABLE
98 If your board has only one hardware serial, such as UNO, you should disable
99 dbSerial and redirect nexSerial to Serial(Refer to section:`Serial configuration`).
103 <http://blog.iteadstudio.com/nextion-tutorial-based-on-nextion-arduino-library/>
107 -------------------------------------------------------------------------------
110 The MIT License (MIT)
112 Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
114 The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
116 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
119 -------------------------------------------------------------------------------