You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
1234567891011121314 |
- #ifndef _LCD_H_
- #define _LCD_H_
-
- void lcd_init(void);
- void lcd_loop(void);
-
- void lcd_clear(void);
- void lcd_set_heading(const char *heading);
- void lcd_set_text(const char *text);
- void lcd_set_menu_text(int line, const char *text);
-
- int lcd_text_lines(void);
-
- #endif // _LCD_H_
|