diff options
| author | Clemens von Molo <clemensvonmolo@paderborn.com> | 2021-10-31 20:23:43 (GMT) |
|---|---|---|
| committer | Clemens von Molo <clemensvonmolo@paderborn.com> | 2021-10-31 20:23:43 (GMT) |
| commit | 5e1f4839daff075d6411f41148eb6d5d0543bcee (patch) | |
| tree | 8e0daa157d07b3dbcbbab6d706da78b090510b93 /src/displayapp/screens/InfiniPaint.h | |
| parent | 0aa73c2279f81a3cc2c730d253807b6102033195 (diff) | |
InfiniPaint vibrate on colorchange, fix color rotation
Diffstat (limited to 'src/displayapp/screens/InfiniPaint.h')
| -rw-r--r-- | src/displayapp/screens/InfiniPaint.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/displayapp/screens/InfiniPaint.h b/src/displayapp/screens/InfiniPaint.h index 0a70e03..8a96fc6 100644 --- a/src/displayapp/screens/InfiniPaint.h +++ b/src/displayapp/screens/InfiniPaint.h @@ -3,6 +3,7 @@ #include <lvgl/lvgl.h> #include <cstdint> #include "Screen.h" +#include "components/motor/MotorController.h" namespace Pinetime { namespace Components { @@ -13,7 +14,7 @@ namespace Pinetime { class InfiniPaint : public Screen { public: - InfiniPaint(DisplayApp* app, Pinetime::Components::LittleVgl& lvgl); + InfiniPaint(DisplayApp* app, Pinetime::Components::LittleVgl& lvgl, Controllers::MotorController& motor); ~InfiniPaint() override; @@ -23,12 +24,13 @@ namespace Pinetime { private: Pinetime::Components::LittleVgl& lvgl; + Controllers::MotorController& motor; static constexpr uint16_t width = 10; static constexpr uint16_t height = 10; static constexpr uint16_t bufferSize = width * height; lv_color_t b[bufferSize]; lv_color_t selectColor = LV_COLOR_WHITE; - uint8_t color = 2; + uint8_t color = 3; }; } } |
