12345678910111213141516171819202122232425262728293031323334 |
-
-
- #ifndef __LCD_H__
- #define __LCD_H__
-
- #include <stdint.h>
-
- #define LCD_WIDTH 128
- #define LCD_HEIGHT 64
-
- void lcd_init(void);
- void lcd_draw(const char *mode, const char *val, const char *bat);
- void lcd_draw_bye(void);
- void lcd_draw_bitmap(uint8_t *data, int width, int height, int x_off, int y_off);
-
- void lcd_debug_buttons(void);
-
- #endif
|