From 9a55ce614517b8ed09975b28bf0cd1f41f9119de Mon Sep 17 00:00:00 2001 From: takanotume24 Date: Fri, 8 Nov 2019 22:53:24 +0900 Subject: [PATCH] Update BLE_client.ino fix typo --- libraries/BLE/examples/BLE_client/BLE_client.ino | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/BLE/examples/BLE_client/BLE_client.ino b/libraries/BLE/examples/BLE_client/BLE_client.ino index 8950075ce5b..55d9fa0de6a 100644 --- a/libraries/BLE/examples/BLE_client/BLE_client.ino +++ b/libraries/BLE/examples/BLE_client/BLE_client.ino @@ -154,7 +154,7 @@ void loop() { // Set the characteristic's value to be the array of bytes that is actually a string. pRemoteCharacteristic->writeValue(newValue.c_str(), newValue.length()); }else if(doScan){ - BLEDevice::getScan()->start(0); // this is just eample to start scan after disconnect, most likely there is better way to do it in arduino + BLEDevice::getScan()->start(0); // this is just example to start scan after disconnect, most likely there is better way to do it in arduino } delay(1000); // Delay a second between loops.