aboutsummaryrefslogtreecommitdiffstats
path: root/source/sharp.cpp
diff options
context:
space:
mode:
authorClyne Sullivan <tullivan99@gmail.com>2019-03-14 14:44:18 -0400
committerClyne Sullivan <tullivan99@gmail.com>2019-03-14 14:44:18 -0400
commit352e0df7d800b033ce24ad1022461f5d1908da93 (patch)
tree3cf6adf03311668fe3ecbbb21c070668624fa10a /source/sharp.cpp
parent31e115f7e72532fbfd456709e95d440e3be46fa1 (diff)
cleanup, display screen abstraction
Diffstat (limited to 'source/sharp.cpp')
-rw-r--r--source/sharp.cpp40
1 files changed, 40 insertions, 0 deletions
diff --git a/source/sharp.cpp b/source/sharp.cpp
new file mode 100644
index 0000000..e780ae7
--- /dev/null
+++ b/source/sharp.cpp
@@ -0,0 +1,40 @@
+#include "sharp.hpp"
+#include "rtc.hpp"
+
+constexpr unsigned int SHARP_SCK = 12;
+constexpr unsigned int SHARP_MOSI = 13;
+constexpr unsigned int SHARP_SS = 14;
+
+Adafruit_SharpMem Sharp::display(SHARP_SCK, SHARP_MOSI, SHARP_SS, 144, 168);
+TaskHandle_t Sharp::taskHandle;
+bool Sharp::holdRendering = false;
+RenderFunc Sharp::currentScreen;
+
+#define BLACK 0
+#define WHITE 1
+
+void Sharp::begin(void)
+{
+ display.begin();
+ display.clearDisplay();
+ display.setTextSize(3);
+ display.setTextColor(BLACK, WHITE);
+
+ xTaskCreate(updateTask, "sharp", 512, nullptr, TASK_PRIO_LOW,
+ &taskHandle);
+}
+
+void Sharp::updateTask([[maybe_unused]] void *arg)
+{
+ static auto old = RTC::ticks();
+ while (1) {
+ do {
+ delay(300);
+ } while (holdRendering);
+
+ if (currentScreen)
+ currentScreen(display);
+ display.refresh();
+ }
+}
+