Ajout LCD pour débug

This commit is contained in:
2022-09-12 13:29:31 +02:00
parent 4d44be9efa
commit 4ac247632c

View File

@@ -20,13 +20,20 @@ int main(void) {
init_lcd();
lcd_puts("Test e-paper");
lcd_position(1, 0);
lcd_puts("Initialisation ok");
lcd_puts("Initialisation ok ");
int j = 0;
while(1) {
for(int i = 100000; i>0; i--);
epaper_clearframe(0xFF);
for(int i = 100000; i>0; i--);
epaper_clearframe(0x88);
lcd_position(1, 0);
lcd_puts(" ");
lcd_position(1, 0);
lcd_putc((j++ % 26) + 'A');
};
} // end of main