You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
214 B
C
15 lines
214 B
C
![]()
7 years ago
|
#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_
|