wireless debugging via Bluetooth Bee module wiki: http://mbed.org/cookbook/Wireless-Debugging-with-Bluetooth-Bee

Revision:
3:d5f6ef5107b4
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp	Fri Mar 30 19:49:10 2012 +0000
@@ -0,0 +1,14 @@
+#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;
+}
\ No newline at end of file