Query if a Bluetooth® Low Energy device is connected
bleDevice.connected()
None
// listen for Bluetooth® Low Energy centrals to connect:
BLEDevice central = BLE.central();
// while the central is still connected
while (central.connected()) {
// ...
}