arduino-esp32/libraries/BluetoothSerial
Eckhard Völlm a0beb81a4c
Consistently change device index to singed integer in BluetoothSerial lib (#6109)
* change parameter to signed int

As of wrong paramater, the following problem existed, that will be fixed now with this change.

BTScanResultsSet.cpp:67:8: warning: comparison of unsigned expression < 0 is always false [-Wtype-limits]
if (i < 0)

* Change parameter and variable to int

As of wrong paramater, the following problem existed, that will be fixed now with this change.

BTScanResultsSet.cpp:67:8: warning: comparison of unsigned expression < 0 is always false [-Wtype-limits]
if (i < 0)
2022-01-17 16:31:58 +02:00
..
examples [2.0.0] BtClassic Discovery with info without connect (#4811) 2021-04-16 01:37:33 +03:00
src Consistently change device index to singed integer in BluetoothSerial lib (#6109) 2022-01-17 16:31:58 +02:00
keywords.txt Add hasClient for BluetoothSerial (#1183) 2018-03-09 11:16:18 +01:00
library.properties Bump library versions to 2.0.0 (#5182) 2021-05-18 14:00:49 +03:00
README.md Add BluetoothSerial library (#1144) 2018-03-05 07:34:10 +01:00

Bluetooth Serial Library

A simple Serial compatible library using ESP32 classical bluetooth (SPP)

How to use it?