From 352e0df7d800b033ce24ad1022461f5d1908da93 Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Thu, 14 Mar 2019 14:44:18 -0400 Subject: cleanup, display screen abstraction --- source/controller.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'source/controller.cpp') diff --git a/source/controller.cpp b/source/controller.cpp index fc1b70b..a364c9d 100755 --- a/source/controller.cpp +++ b/source/controller.cpp @@ -2,7 +2,7 @@ #include -#include "driverSharp.h" +#include "sharp.hpp" #include "rtc.hpp" BLEUart bleuart; @@ -45,6 +45,7 @@ void setup(void) Bluefruit.Advertising.start(0); // 0 = Don't stop advertising after n seconds Serial.println(F("Ready.")); + Sharp::setScreen(RTC::showTime); } void loop(void) @@ -66,7 +67,7 @@ void handlePacket(void) switch (buf[0]) { case 'L': - Sharp::setMessage(buf + 1); + RTC::setMessage(buf + 1); break; case 'T': Serial.println("Setting time!"); -- cgit v1.2.3