nextion | Communicate with ITEAD 's Nextion HMI Device
kandi X-RAY | nextion Summary
kandi X-RAY | nextion Summary
Communicate with ITEAD's Nextion HMI Devices.
Support
Quality
Security
License
Reuse
Top functions reviewed by kandi - BETA
Currently covering the most popular Java, JavaScript and Python libraries. See a Sample of nextion
nextion Key Features
nextion Examples and Code Snippets
Community Discussions
Trending Discussions on nextion
QUESTION
I'm a total noob and just starting out with PlatformIO and Arduino/ESP32. I also want to say thanks in advance to any help I can get.
Plan:
I have 2 ESP32's talking over ESP_NOW, I just can't verify the data being sent in order to progress with my project. Basically, I have a Nextion display that sends specific info to an ESP32 (tested and working) and that ESP32 is then to send that information via ESP_NOW to the other ESP32 which will translate it into serial data to send to an Arduino Due and perform some tasks.
Problem:
The issue I have is that when I test, I see the data I think I am transmitting, but when I try to Serial.print said info, I get "0 0 0 0". I'm not sure that I am sending OR receiving the data properly. All I know is that when I press the button on the Nextion, I get a response on the ESP32 that is not connected.
Code:
...ANSWER
Answered 2021-May-24 at 13:22I was able to resolve my issue. Below is the code that displayed the same information that was sent from the host and received by the slave ESP32.
QUESTION
I was trying to establish a serial communication between my python script and Nextion display. I want to create a custom firmware uploader, so I could use it instead of Nextion Editor.
Unfortunately I can't establish a connection to the screen(RS232 to Serial is connected properly and detected, I use default 9600 baud rate). After sending
...ANSWER
Answered 2019-Dec-06 at 13:11If you look at this GitHub commit, you'll see that they do:
QUESTION
I am newbie in C (I'm using Delphi/pascal instead) and trying to get some temperature sensor values and make them equal/fixed size to send to the MCU (with Arduino IDE- so I have to work with C).
Length of data (strlen()) can be 3(like 5.3, 0.9, 0.0 etc), 4(like -4.2, 19.8 etc) or 5(like -15.6) based on temp sensor and below code;
...ANSWER
Answered 2019-Feb-06 at 22:07At least three problems. First, temp_char[]
is declared at size 5, but you're trying to put 6 characters into it with "EEEEE" (which has a trailing zero), and by using temp_char[5]
(only values 0..4 are legal).
Second, the assignment temp_char = "EEEEE"
just changes the pointer, it doesn't actually copy anything into temp_char
. You need strcpy()
or something similar for that.
Third, you're confusing types:
Community Discussions, Code Snippets contain sources that include Stack Exchange Network
Vulnerabilities
No vulnerabilities reported
Install nextion
Support
Reuse Trending Solutions
Find, review, and download reusable Libraries, Code Snippets, Cloud APIs from over 650 million Knowledge Items
Find more librariesStay Updated
Subscribe to our newsletter for trending solutions and developer bootcamps
Share this Page