From 4e4bd1b9b0b6bd570c20e3096ff3ef25b6fe1599 Mon Sep 17 00:00:00 2001 From: hm-shamche <2cool4HM> Date: Thu, 14 Jan 2021 11:50:37 +0100 Subject: [PATCH] fixed typo --- examples/BLE_client/BLE_client.ino | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/BLE_client/BLE_client.ino b/examples/BLE_client/BLE_client.ino index 4c58299..3e21cb5 100644 --- a/examples/BLE_client/BLE_client.ino +++ b/examples/BLE_client/BLE_client.ino @@ -153,7 +153,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.