diff options
author | tcsullivan <tullivan99@gmail.com> | 2019-03-14 10:14:40 -0400 |
---|---|---|
committer | tcsullivan <tullivan99@gmail.com> | 2019-03-14 10:14:40 -0400 |
commit | 31e115f7e72532fbfd456709e95d440e3be46fa1 (patch) | |
tree | e937395624efecf99eb4f58f1cd7f57d2efc7997 /source/controller.cpp | |
parent | dd33956654589ded6644a75088e50069b1744ef9 (diff) |
app communication working
Diffstat (limited to 'source/controller.cpp')
-rwxr-xr-x | source/controller.cpp | 27 |
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; + } +} + |