diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2019-03-14 14:44:18 -0400 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2019-03-14 14:44:18 -0400 |
commit | 352e0df7d800b033ce24ad1022461f5d1908da93 (patch) | |
tree | 3cf6adf03311668fe3ecbbb21c070668624fa10a /source/sharp.cpp | |
parent | 31e115f7e72532fbfd456709e95d440e3be46fa1 (diff) |
cleanup, display screen abstraction
Diffstat (limited to 'source/sharp.cpp')
-rw-r--r-- | source/sharp.cpp | 40 |
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(); + } +} + |