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.
BluetoothBee.h
00001 // BluetoothBee.h 00002 00003 // This very simple API is only meant for facilitating wireless debugging via the Bluetooth Bee module through the UART 00004 // Note: the API inherits the Serial class's functions: printf(), getc(), sscan(), etc. 00005 // however the Serial class's "setup" functions, such as baud() and format() will not behave as you expect; thus don't use them 00006 // Bluetooth Bee wiki: http://www.seeedstudio.com/wiki/index.php?title=Bluetooth_Bee 00007 00008 #ifndef BLUETOOTHBEE_H 00009 #define BLUETOOTHBEE_H 00010 00011 #include "mbed.h" 00012 00013 class BluetoothBee: public Serial { 00014 public: 00015 BluetoothBee(PinName tx, PinName rx); 00016 void setup(); 00017 }; 00018 00019 #endif
Generated on Mon Aug 1 2022 00:36:53 by
1.7.2