diff options
Diffstat (limited to 'include/lcd.h')
-rw-r--r-- | include/lcd.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/include/lcd.h b/include/lcd.h new file mode 100644 index 0000000..0962e08 --- /dev/null +++ b/include/lcd.h @@ -0,0 +1,14 @@ +#ifndef LCD_H_ +#define LCD_H_ + +#include <stdint.h> + +void lcd_init(void); + +void lcd_puts(const char *s); +void lcd_puti(int i); +void lcd_puth(int h); +void lcd_putb(uint8_t b); +void lcd_clear(void); + +#endif // LCD_H_ |