3 #include <avr/pgmspace.h>
5 #include <util/delay.h>
9 char string_flash[] PROGMEM =
"Hello Flash!";
13 char string1[] =
"Hello World!";
void lcd_light(bool light)
Turn backlight ON/OFF.
bool lcd_printlc_P(uint8_t line, uint8_t col, char *string)
Print string from Flash to position (If string is longer than LCD_COLS overwrite first chars in line)...
void lcd_command(uint8_t command)
Issue a command to the display.
void lcd_print_P(PGM_P string)
Print string from Flash to cursor position.
void lcd_print(char *string)
Print string to cursor position.
bool lcd_nextline(void)
Go to nextline (if next line > LCD_LINES return false)
void lcd_init(void)
Display initialization sequence.