20 lines
593 B
C
20 lines
593 B
C
//****main.c****//
|
|
#include "lcd.h"
|
|
|
|
|
|
int main(void){
|
|
lcd_init(LCD_DISP_ON); // init lcd and turn on
|
|
|
|
lcd_puts("Hello World"); // put string from RAM to display (TEXTMODE) or buffer (GRAPHICMODE)
|
|
lcd_gotoxy(0,2); // set cursor to first column at line 3
|
|
lcd_puts_p(PSTR("String from flash")); // puts string form flash to display (TEXTMODE) or buffer (GRAPHICMODE)
|
|
#if defined GRAPHICMODE
|
|
lcd_drawCircle(64,32,7,WHITE); // draw circle to buffer white lines
|
|
lcd_display(); // send buffer to display
|
|
#endif
|
|
for(;;){
|
|
//main loop
|
|
}
|
|
return 0;
|
|
}
|