Example programs for MultiTech Dot devices demonstrating how to use the Dot devices and the Dot libraries for LoRa communication.

Dependencies:   libmDot-mbed5 ISL29011

Fork of Dot-Examples by MultiTech

Revision:
14:19fae4509473
Parent:
12:ec9768677cea
Child:
15:364df461110f
--- a/examples/src/ota_example.cpp	Tue Oct 11 13:29:32 2016 -0500
+++ b/examples/src/ota_example.cpp	Tue Oct 11 13:53:32 2016 -0500
@@ -1,4 +1,5 @@
 #include "dot_util.h"
+#include "RadioEvent.h"
  
 #if ACTIVE_EXAMPLE == OTA_EXAMPLE
 
@@ -35,12 +36,18 @@
 #endif
 
 int main() {
+    // Custom event handler for automatically displaying RX data
+    RadioEvent events;
+
     pc.baud(115200);
 
     mts::MTSLog::setLogLevel(mts::MTSLog::TRACE_LEVEL);
     
     dot = mDot::getInstance();
 
+    // attach the custom events handler
+    dot->setEvents(&events);
+
     if (!dot->getStandbyFlag()) {
         // start from a well-known state
         logInfo("defaulting Dot configuration");