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 [Latest Online Documentation](http:
56 contains Configuration, Get Started, Reference of API and Examples, etc.
58 Offline Documentation
's entry `doc/Documentation/index.html` shiped with source code
59 can be open in your browser such as Chrome, Firefox or any one you like.
61 # Suppported Mainboards
63 **All boards, which has one or more hardware serial, can be supported.**
74 In configuration file NexConfig.h, you can find two macros below:
76 - dbSerial: Debug Serial (baudrate:9600), needed by beginners for debug your
77 nextion applications or sketches. If your complete your work, it will be a
78 wise choice to disable Debug Serial.
80 - nexSerial: Nextion Serial, the bridge of Nextion and your mainboard.
82 **Note:** the default configuration is for MEGA2560.
84 ## Redirect dbSerial and nexSerial
86 If you want to change the default serial to debug or communicate with Nextion ,
87 you need to modify the line in configuration file:
89 #define dbSerial Serial ---> #define dbSerial Serialxxx
90 #define nexSerial Serial2 ---> #define nexSeria Serialxxx
92 ## Disable Debug Serial
94 If you want to disable the debug information,you need to modify the line in
97 #define DEBUG_SERIAL_ENABLE ---> //#define DEBUG_SERIAL_ENABLE
101 If your board has only one hardware serial, such as UNO, you should disable
102 dbSerial and redirect nexSerial to Serial(Refer to section:`Serial configuration`).
106 <http://blog.iteadstudio.com/nextion-tutorial-based-on-nextion-arduino-library/>
110 -------------------------------------------------------------------------------
113 DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
114 Version 2, December 2004
116 Copyright (C) 2014 ITEAD Studio
118 Everyone is permitted to copy and distribute verbatim or modified
119 copies of this license document, and changing it is allowed as long
120 as the name is changed.
122 DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
124 TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
126 0. You just DO WHAT THE FUCK YOU WANT TO.
129 -------------------------------------------------------------------------------