add cursor

This commit is contained in:
2021-05-21 05:47:23 +02:00
parent d9087580b2
commit 470dd2077c
2 changed files with 10 additions and 0 deletions

1
lcd.h
View File

@@ -42,6 +42,7 @@ void lcd_print_str (char *str);
void lcd_write_P (const char *Buffer,...);
void lcd_set_position(uint8_t row, uint8_t col);
void lcd_cursor(uint8_t en);
#define lcd_write(format, args...) lcd_write_P(PSTR(format) , ## args)