Fork of my original MQTTGateway
Diff: XbeeMonitor/XbeeMonitor.h
- Revision:
- 0:a1734fe1ec4b
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/XbeeMonitor/XbeeMonitor.h Sat Apr 08 14:43:14 2017 +0000
@@ -0,0 +1,17 @@
+#ifndef _XBEE_MONITOR_H_
+#define _XBEE_MONITOR_H_
+
+#include <stdint.h>
+
+typedef struct
+{
+ uint64_t radioID;
+ int sprinkler_pin;
+} RadioControlData, *pRadioControlData;
+
+int initXbeeMonitor();
+uint64_t getXbeeId();
+void runXbeeMonitor();
+void postRadioControl(RadioControlData &);
+
+#endif