123456789101112131415161718192021222324252627282930313233 |
-
-
- #ifndef __LCD_H__
- #define __LCD_H__
-
- #define LCD_WIDTH 128
- #define LCD_HEIGHT 64
-
- #define FONT_HEIGHT 8
- #define FONT_WIDTH 5
-
- void lcd_init(void);
-
- void lcd_splash_version(void);
- void lcd_bye(void);
-
- #endif
|