1 #ifndef _DISPLAY_H_ 2 #define _DISPLAY_H_ 3 4 #include <stdint.h> 5 6 void display_init(void); 7 void display_char_position_write(uint8_t x, uint8_t y); 8 void display_string_write(const char *str); 9 10 void display_cursor_off(void); 11 void display_cursor_on(void); 12 13 #endif // _DISPLAY_H_
