aboutsummaryrefslogtreecommitdiffstats
path: root/source/controller.cpp
diff options
context:
space:
mode:
authortcsullivan <tullivan99@gmail.com>2019-03-14 10:14:40 -0400
committertcsullivan <tullivan99@gmail.com>2019-03-14 10:14:40 -0400
commit31e115f7e72532fbfd456709e95d440e3be46fa1 (patch)
treee937395624efecf99eb4f58f1cd7f57d2efc7997 /source/controller.cpp
parentdd33956654589ded6644a75088e50069b1744ef9 (diff)
app communication working
Diffstat (limited to 'source/controller.cpp')
-rwxr-xr-xsource/controller.cpp27
1 files changed, 26 insertions, 1 deletions
diff --git a/source/controller.cpp b/source/controller.cpp
index bd316b5..fc1b70b 100755
--- a/source/controller.cpp
+++ b/source/controller.cpp
@@ -7,6 +7,8 @@
BLEUart bleuart;
+void handlePacket(void);
+
void app_error_handler_bare([[maybe_unused]] uint32_t error_code)
{
Serial.println("Received an error");
@@ -48,7 +50,30 @@ void setup(void)
void loop(void)
{
if (bleuart.available())
- Serial.print((char)bleuart.read());
+ handlePacket();
delay(10);
}
+
+void handlePacket(void)
+{
+ char buf[64];
+ char *p = buf;
+ do {
+ *p++ = bleuart.read();
+ } while (bleuart.available());
+ *p = '\0';
+
+ switch (buf[0]) {
+ case 'L':
+ Sharp::setMessage(buf + 1);
+ break;
+ case 'T':
+ Serial.println("Setting time!");
+ RTC::setTicks(std::atoi(buf + 1) * 60);
+ break;
+ default:
+ break;
+ }
+}
+