mirror of
https://github.com/felis/USB_Host_Shield_2.0.git
synced 2024-03-22 11:31:26 +01:00
Updated comment about Stream class
This commit is contained in:
parent
148b67ca2d
commit
2de6238a6b
1 changed files with 4 additions and 1 deletions
5
SPP.h
5
SPP.h
|
@ -89,7 +89,10 @@
|
||||||
#define BT_RFCOMM_NSC_RSP 0x11
|
#define BT_RFCOMM_NSC_RSP 0x11
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/** This BluetoothService class implements the Serial Port Protocol (SPP). */
|
/**
|
||||||
|
* This BluetoothService class implements the Serial Port Protocol (SPP).
|
||||||
|
* It inherits the Arduino Stream class. This allows it to use all the standard Arduino print functions.
|
||||||
|
*/
|
||||||
class SPP : public BluetoothService, public Stream {
|
class SPP : public BluetoothService, public Stream {
|
||||||
public:
|
public:
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in a new issue