Hello,
I would like to hava a ticker on my TFT-LCD-Display.
But when I use a variable (y) for the y-coordinate in the for-loop,
to get a ticker on the display, the display stays black.
for(int y=-0; y<240; y++)
{
lcd.print(“CLS(0);”); // clear the screen with c color
lcd.print(“DR0;”); // display “upright”
lcd.println(“DS24(0,y,‘Text for the ticker’,4);”); // x-coordinate=0
delay(200);
}
I would be happy if somebody could help me.
Thank you und best regards
PS