From 51a072639f2bcf95a87ccaf82c75454212fde607 Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Thu, 28 Mar 2019 14:47:22 -0400 Subject: added input: scrolling and tapping --- source/sharp.hpp | 13 +++++++++++++ 1 file changed, 13 insertions(+) (limited to 'source/sharp.hpp') diff --git a/source/sharp.hpp b/source/sharp.hpp index 2775711..3c1d34e 100644 --- a/source/sharp.hpp +++ b/source/sharp.hpp @@ -9,12 +9,19 @@ #define BLACK 0 #define WHITE 1 +constexpr int SHARP_WIDTH = 144; +constexpr int SHARP_HEIGHT = 168; + class Sharp { private: static Adafruit_SharpMem display; static TaskHandle_t taskHandle; static std::vector widgets; + + static int topY; + static int scrollVelocity; + public: static void begin(void); @@ -23,6 +30,12 @@ public: widgets.emplace_back(new T(args...)); } + inline static void setScrollVelocity(int vel) { + scrollVelocity = vel; + } + + static void sendInput(int ypos); + private: static void updateTask(void *); }; -- cgit v1.2.3