#ifndef KIMODEM_DISPLAY_SERIAL #define KIMODEM_DISPLAY_SERIAL #include class Display { public: Display() {}; void Clear(); void Draw(); bool HasDisplay(); void Print(const char *); void Println(const char *); void SetCursor(int16_t x, int16_t y); }; #endif