Hi,
Maybe someone can help me, I try to play with my new display and now I have aproblem to write to a "strings" object from my arduino nano every...
I can send some text but it is blinking at regular interval.
Thanks for your help.
Martin
Text is blinking fastly.
There is no text...
Maybe someone can help me, I try to play with my new display and now I have aproblem to write to a "strings" object from my arduino nano every...
I can send some text but it is blinking at regular interval.
Thanks for your help.
Martin
Code:
void loop() { genie.WriteStr(0, "My text !"); }
Code:
int flag = 0; void loop() { if(flag == 0){ genie.WriteStr(0, "My text !"); flag = 1; } }
Comment