Hi all,
I am a newbie in arduino. I have a arduino project with nextion HMI. Firstly, i add ITEADLIB_Arduino_Nextion library from github. Then, i write project codes and upload to arduino. After uploading has completed, my arduino's RX led start to blink constantly. I write a simple code with ITEADLIB like ;
#include "Nextion.h"
NexNumber n9 = NexNumber (1, 3, "n9");
uint32_t number = 0;
void setup() {
Serial.begin(9600);
nexInit();
}
void loop() {
n9.getValue(&number);
delay(1000);
Serial.println(number,DEC);
}
i take continiously errors "⸮⸮⸮get n9.val⸮⸮⸮get n9.val⸮⸮⸮get n9.val⸮⸮⸮get n9.val⸮⸮⸮get n9.val⸮⸮⸮ ...." and so on in serial monitor. My arduino has only connected with my computer, nextion HMI isn't connected. Codes are OK, because it works when other computers upload it. Also, codes that i havent used Nextion lib. works smoothly. What is the problem?