Component: Nextion Display (Graphical Color)

From Flowcode Help
Jump to navigationJump to search
Author Matrix TSL
Version 1.0
Category Graphical Color


Nextion Display component

A simple libray to interface a Nextion display. The elements on the nextion display are built using the Nextion Editor software and uploaded to the display. The component can then interact with the display elements.

Component Source Code

Please click here to download the component source project: FC_Comp_Source_API_Display_Nextion.fcfx

Please click here to view the component source code (Beta): FC_Comp_Source_API_Display_Nextion.fcfx

Detailed description

No detailed description exists yet for this component

Examples

Handling Buttons

This example looks for button presses with IDs 1 and 2. On a button release event the corresponding LEDs will be toggled.

FC6 Icon.png Nextion Touch Demo






Macro reference

GetText

Fc9-comp-macro.png GetText
Gets the text of a specific item 
Fc9-string-icon.png - STRING Name
 
Fc9-string-icon.png - STRING Return


GetTouchEvent

Fc9-comp-macro.png GetTouchEvent
Collects the next touch event in the queue. Returns 0 for no touch event detected, 1= touch press, 2 = touch release 
Fc9-u8-icon.png - BYTE Return


GetTouchID

Fc9-comp-macro.png GetTouchID
Gets the ID of the corresponding touch event. Must be called after calling GetTouchEvent component macro. 
Fc9-u16-icon.png - UINT Return


GetValue

Fc9-comp-macro.png GetValue
Gets the value from a specific item 
Fc9-string-icon.png - STRING Name
 
Fc9-u32-icon.png - ULONG Return


Initialise

Fc9-comp-macro.png Initialise
Sets up the UART connection to the Nextion display 
Fc9-void-icon.png - VOID Return


SetBackgroundColour

Fc9-comp-macro.png SetBackgroundColour
Sets the background colour of a specific item 
Fc9-string-icon.png - STRING Name
 
Fc9-u32-icon.png - ULONG Colour
 
Fc9-void-icon.png - VOID Return


SetFontColour

Fc9-comp-macro.png SetFontColour
Sets the foreground font colour of a specific item 
Fc9-string-icon.png - STRING Name
 
Fc9-u32-icon.png - ULONG Colour
 
Fc9-void-icon.png - VOID Return


SetPage

Fc9-comp-macro.png SetPage
Sets the page of the display allowing multiple configurations 
Fc9-string-icon.png - STRING Name
Name of the page e.g. "page0" 
Fc9-void-icon.png - VOID Return


SetText

Fc9-comp-macro.png SetText
Sets the text of a specific item 
Fc9-string-icon.png - STRING Name
 
Fc9-string-icon.png - STRING Text
 
Fc9-void-icon.png - VOID Return


SetValue

Fc9-comp-macro.png SetValue
Sets the numeric value of a specific item 
Fc9-string-icon.png - STRING Name
 
Fc9-u32-icon.png - ULONG Number
 
Fc9-void-icon.png - VOID Return


Property reference

Fc9-prop-icon.png Properties
Fc9-conn-icon.png Communications
Fc9-type-16-icon.png Channel
UART Channel selector Software channels are bit banged using generic I/O pins but are not as reliable as hardware channels. Hardware channels use the selected peripheral on-board the target microcontroller. 
Fc9-type-16-icon.png Baud Options
Baud rate option selector 
Fc9-type-14-icon.png Baud Rate
 
Fc9-type-5-icon.png TX
Pin to be used for Transmit data 
Fc9-type-5-icon.png RX
Pin to be used for Receive data 
Fc9-type-21-icon.png Touch Queue Size
Number of touch press/release events we can store before running out of memory. 
Fc9-type-21-icon.png Receive Buffer Size
Sets the number of byte elements inside the circular buffer. 
Fc9-type-21-icon.png Timeout
Time in milliseconds to wait for a reply to a command. 
Fc9-conn-icon.png Simulation
Fc9-type-7-icon.png Scope Traces
Selects if the scope traces are automatically added to the data recorder window or not. Simulation - draws an approximation of the UART data onto the scope trace. ICT - sets up the scope trace for incoming data and adds UART packet decoding at the correct BAUD. 
Fc9-type-7-icon.png Console Data
Selects if the console data is automatically generated or not 
Fc9-type-16-icon.png Data Source
Simulation data source used to allow the component to connect to various remote devices Nothing - Simulation data is ignored COM port - Routes the communication data to and from a physical or virtual COM port API - Routes the communication data via a data injector component on the Panel.