connected()



Açıklama

Bir BLE cihazı bağlıysa sorgulama

Sözdizimi

bleDevice.connected ()

Parametreler

Yok

İadeler

BLE cihazı bağlıysa true , aksi takdirde false olur .

Misal


  // listen for BLE centrals to connect:
  BLEDevice central = BLE.central();

    // while the central is still connected
    while (central.connected()) {

       // ...
    }

See Also