Fork of my original MQTTGateway

Dependencies:   mbed-http

XbeeMonitor/XbeeMonitor.h

Committer:
vpcola
Date:
2017-04-08
Revision:
0:a1734fe1ec4b

File content as of revision 0:a1734fe1ec4b:

#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