Initial commit

This commit is contained in:
2023-02-10 09:32:39 +01:00
commit 84bbb1297b
13 changed files with 1008 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
/**
* @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