diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2019-03-28 14:47:22 -0400 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2019-03-28 14:47:22 -0400 |
commit | 51a072639f2bcf95a87ccaf82c75454212fde607 (patch) | |
tree | 9a7384e46725e0f41d9f4ecdfb8eb89344ce89c5 /source/controller.cpp | |
parent | f986c858e54d9be72020ae2d7319e70eab6de17d (diff) |
added input: scrolling and tapping
Diffstat (limited to 'source/controller.cpp')
-rwxr-xr-x | source/controller.cpp | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/source/controller.cpp b/source/controller.cpp index d9ac961..3aa6c3a 100755 --- a/source/controller.cpp +++ b/source/controller.cpp @@ -48,6 +48,13 @@ void setup(void) Serial.println(F("Ready.")); Sharp::addWidget<TimeWidget>(); Sharp::addWidget<NotificationWidget>("Welcome to smartwatch"); + Sharp::addWidget<NotificationWidget>("Hi"); + Sharp::addWidget<NotificationWidget>("Once upon a time, there lived an old man. His name was Gerg."); + Sharp::addWidget<NotificationWidget>("NOTICE: Play more games"); + Sharp::addWidget<NotificationWidget>("2 new messages"); + Sharp::addWidget<NotificationWidget>("you have mail"); + Sharp::addWidget<NotificationWidget>("GGGGGGGGGGGGGGGGGGGGGGG"); + Sharp::addWidget<NotificationWidget>("ABCDEFGHIJKLMNOPQRSTUZWXYZ"); } void loop(void) @@ -55,6 +62,34 @@ void loop(void) if (bleuart.available()) handlePacket(); + static int last = 0; + static bool scrolled = false; + int val = analogRead(A5); + if (val >= 10) { + if (last == 0) { + scrolled = false; + last = val; + } + + auto diff = val - last; + if (diff > 50) { + Sharp::setScrollVelocity(1); + scrolled = true; + } else if (diff < -50) { + Sharp::setScrollVelocity(-1); + scrolled = true; + } else { + Sharp::setScrollVelocity(0); + } + } else { + if (last != 0 && !scrolled) { + int ypos = last / 70 * (SHARP_HEIGHT / 10); + Sharp::sendInput(ypos); + } + last = 0; + Sharp::setScrollVelocity(0); + } + delay(10); } |