Hello, thanks for this great forum !!!
i'm running a 128x64 Graphic LCD with a Arduino MEGA 2560, and i try to make lines of text display on the screen,
Everything works fine with the demo Program, but with my program everything is displayed 2 times
this is a part of my program.
thanks
#include <glcd.h>
#include "fonts/Arial14.h" // proportional font
#include "fonts/SystemFont5x7.h" // system font
void setup()
{
GLCD.Init(); // initialise the library, non inverted writes pixels onto a clear screen
}
void loop(){
GLCD.ClearScreen();
GLCD.SelectFont(System5x7);
GLCD.Puts("PROGRAMME");
GLCD.CursorTo (0 , 1);
GLCD.Puts ("HEAT V1.06");
delay (2000);
}