aboutsummaryrefslogtreecommitdiffstats
path: root/source/driverSharp.h
diff options
context:
space:
mode:
Diffstat (limited to 'source/driverSharp.h')
-rw-r--r--source/driverSharp.h28
1 files changed, 0 insertions, 28 deletions
diff --git a/source/driverSharp.h b/source/driverSharp.h
deleted file mode 100644
index 986205b..0000000
--- a/source/driverSharp.h
+++ /dev/null
@@ -1,28 +0,0 @@
-#include "sharp/Adafruit_SharpMem.h"
-
-class Sharp {
-private:
- static Adafruit_SharpMem display;
- static TaskHandle_t taskHandle;
- static bool holdRendering;
- static char message[16];
-
-public:
- static void begin(void);
-
- inline static void pause(void) {
- holdRendering = true;
- }
-
- inline static void unpause(void) {
- holdRendering = false;
- }
-
- inline static void setMessage(const char *s) {
- strncpy(message, s, 16);
- }
-
-private:
- static void updateTask(void *);
-};
-