9 lines
213 B
C
9 lines
213 B
C
|
#ifndef GDM1602K_H_
|
||
|
#define GDM1602K_H_
|
||
|
|
||
|
void lcd_write_strings(const char* top, const char* bottom);
|
||
|
void lcd_write_string(const char* string);
|
||
|
void lcd_init();
|
||
|
void lcd_clear();
|
||
|
|
||
|
#endif /* GDM1602K_H_ */
|