#ifndef _DISPLAY_H_
#define _DISPLAY_H_

#include <stdint.h>

void display_init(void);
void display_char_position_write(uint8_t x, uint8_t y);
void display_string_write(const char *str);

void display_cursor_off(void);
void display_cursor_on(void);

#endif // _DISPLAY_H_
