QC Control software

Dependencies:   mbed

Fork of dgps by Colin Stearns

adapt/xbee.h

Committer:
dylanembed123
Date:
2014-04-10
Revision:
14:6be57da62283
Parent:
13:a6d3cf2b018e
Child:
15:e3e03a9df89e

File content as of revision 14:6be57da62283:

#ifndef _XBEE_H_
#define _XBEE_H_
#include "mbed.h"


/// Define Pinout
#define XBEEPINTX p9
#define XBEEPINRX p10

/// Define Baud
#define XBEEBAUD 115200

class XBEE{
private:
    static Serial* xbee;
public:
    /// \brief Call this function to get a hold of the serial for USB.
    static Serial& getSerial();
};
#endif