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.
main.cpp
00001 #include "mbed.h" 00002 #include "xbee.h" 00003 00004 xbee xbee1(p9,p10,p11); //Initalise xbee_lib 00005 00006 int main() 00007 { 00008 char read_data[202]; //Xbee buffer size is 202 bytes 00009 00010 while(1) { 00011 xbee1.RecieveData(read_data,0); //Read data from the XBee 00012 xbee1.SendData(read_data); //Send data to XBee 00013 } 00014 }
Generated on Tue Jul 12 2022 16:35:00 by
