123456789101112131415161718192021222324252627282930 |
-
-
- #ifndef __LCD_H__
- #define __LCD_H__
-
- void lcd_init(void);
-
- uint16_t lcd_get_backlight(void);
- void lcd_set_backlight(uint16_t value);
-
- void lcd_clear(void);
- void lcd_write_point(uint16_t x, uint16_t y, uint32_t color);
-
- #endif
|