1234567891011121314151617181920212223242526272829303132333435363738 |
-
-
- #ifndef __LCD_H__
- #define __LCD_H__
-
- #include <stdint.h>
-
- #define LCD_WIDTH 128
- #define LCD_HEIGHT 64
-
- #define FONT_HEIGHT 8
- #define FONT_WIDTH 5
-
- 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_draw_version(void);
-
- void lcd_debug_buttons(void);
-
- #endif
|