23 lines
427 B
C++
23 lines
427 B
C++
/**
|
|
* @file displayWrapper.h
|
|
* @author Alexander Klein (alex@kleiax.de)
|
|
* @brief
|
|
* @version 0.1
|
|
* @date 2023-01-08
|
|
*
|
|
* @copyright Copyright (c) 2023
|
|
*
|
|
*/
|
|
|
|
#ifndef DISPLAY_WRAPPER_H
|
|
#define DISPLAY_WRAPPER_H
|
|
|
|
class DisplayWrapper {
|
|
public:
|
|
virtual void clear() = 0;
|
|
virtual void setCursor(uint8_t row, uint8_t line) = 0;
|
|
virtual void print(const char *str) = 0;
|
|
};
|
|
|
|
#endif // DISPLAY_WRAPPER_H
|