diff options
author | chegewara <imperiaonline4@gmail.com> | 2018-11-30 16:05:03 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-30 16:05:03 +0100 |
commit | 24d7bdf1f083ceb95c06c0393e8be80c8e0cc18a (patch) | |
tree | cd37ba6136aef42bf6133883fe18a1060bc7baf7 | |
parent | Fix missing include (diff) | |
download | thermostat-24d7bdf1f083ceb95c06c0393e8be80c8e0cc18a.tar.gz thermostat-24d7bdf1f083ceb95c06c0393e8be80c8e0cc18a.tar.bz2 thermostat-24d7bdf1f083ceb95c06c0393e8be80c8e0cc18a.zip |
Update BLE_client.ino
-rw-r--r-- | examples/BLE_client/BLE_client.ino | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/BLE_client/BLE_client.ino b/examples/BLE_client/BLE_client.ino index 265f725..3a20b6a 100644 --- a/examples/BLE_client/BLE_client.ino +++ b/examples/BLE_client/BLE_client.ino @@ -15,7 +15,7 @@ static BLEUUID charUUID("beb5483e-36e1-4688-b7f5-ea07361b26a8"); static boolean doConnect = false; static boolean connected = false; -static doScan = false; +static bool doScan = false; static BLERemoteCharacteristic* pRemoteCharacteristic; static BLEAdvertisedDevice* myDevice; @@ -157,4 +157,4 @@ void loop() { } delay(1000); // Delay a second between loops. -} // End of loop
\ No newline at end of file +} // End of loop |