wireless debugging via Bluetooth Bee module wiki: http://mbed.org/cookbook/Wireless-Debugging-with-Bluetooth-Bee
main.cpp
- Committer:
- jyam
- Date:
- 2012-03-30
- Revision:
- 3:d5f6ef5107b4
File content as of revision 3:d5f6ef5107b4:
#include "mbed.h" #include "BluetoothBee.h" BluetoothBee b(p9,p10); Serial pc(USBTX, USBRX); int main() { b.setup(); // Bluetooth Bee now visible; pair with device (open Terminal program such as PuTTY) b.printf("hello world\n"); return 0; }