Hi everyone I am wondering if anyone has tried to connect a Photon to the Nextion Editor/Debugger. I only have one display but many Photons. so I am trying to connect mine to the Nextion Editor/Debugger until I get the hardware back. I can connect my Photon to Putty on com3. But when I use the debugger it sees the Photon(or something) on com3 but when I press ‘Start’ nothing seems to happen.
Some code I have tried:
void setup()
{
Serial.begin(9600);
}
void loop()
{
int counter=0;
counter++;
Serial.print(“InsideTemp.val=”);
Serial.print(counter);
Serial.write(0xff);
Serial.write(0xff);
Serial.write(0xff);
Serial.print(“n0.val=”);
Serial.print(counter);
Serial.write(0xff);
Serial.write(0xff);
Serial.write(0xff);
delay(1000);
}