Fork of my original MQTTGateway

Dependencies:   mbed-http

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers XbeeMonitor.h Source File

XbeeMonitor.h

00001 #ifndef _XBEE_MONITOR_H_
00002 #define _XBEE_MONITOR_H_
00003 
00004 #include <stdint.h>
00005 
00006 typedef struct 
00007 {
00008     uint64_t radioID;
00009     int sprinkler_pin;    
00010 } RadioControlData, *pRadioControlData;
00011 
00012 int initXbeeMonitor();
00013 uint64_t getXbeeId();
00014 void runXbeeMonitor();
00015 void postRadioControl(RadioControlData &);
00016 
00017 #endif