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.
Dependencies: DHT SCP1000 mbed
xbee.h
- Committer:
- mohamedgamal
- Date:
- 2015-08-02
- Revision:
- 0:0c6be6af3d6d
File content as of revision 0:0c6be6af3d6d:
/**********XBEE intialization file**************/ Serial pc(USBTX, USBRX); Serial xbee(p9,p10); //xbee pin assignment DigitalOut rst1(p11); //xbee reset pin /***********************************************/ void xbeeInit(int baud){ pc.baud(baud); xbee.baud(baud); } /***********************************************/