Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Xbee.h
- Committer:
- Xiaofei
- Date:
- 2015-11-22
- Revision:
- 5:d14636b861ff
- Parent:
- 2:33462c1e9f45
- Child:
- 16:cc598ae4ab52
File content as of revision 5:d14636b861ff:
#pragma once #include "mbed.h" class Xbee { public: // Use p9 and p10 as default serial pins Xbee(PinName tx = p9, PinName rx = p10, PinName rst = p11); // Send buffer void Send(const char*); // Read buffer void Recv(char*,const size_t&); private: Serial _xbee; DigitalOut _rst; };