aboutsummaryrefslogtreecommitdiffstats
path: root/source/controller.cpp
diff options
context:
space:
mode:
authorClyne Sullivan <tullivan99@gmail.com>2019-03-28 14:47:22 -0400
committerClyne Sullivan <tullivan99@gmail.com>2019-03-28 14:47:22 -0400
commit51a072639f2bcf95a87ccaf82c75454212fde607 (patch)
tree9a7384e46725e0f41d9f4ecdfb8eb89344ce89c5 /source/controller.cpp
parentf986c858e54d9be72020ae2d7319e70eab6de17d (diff)
added input: scrolling and tapping
Diffstat (limited to 'source/controller.cpp')
-rwxr-xr-xsource/controller.cpp35
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);
}