From 82ea1fac1262cb3dc57b014ecb562f40b84312dc Mon Sep 17 00:00:00 2001 From: Philipp Date: Tue, 18 Dec 2018 19:47:42 +0100 Subject: [PATCH] Fixed missing return value in BLE client sample --- examples/BLE_client/BLE_client.ino | 1 + 1 file changed, 1 insertion(+) diff --git a/examples/BLE_client/BLE_client.ino b/examples/BLE_client/BLE_client.ino index 4c58299..8950075 100644 --- a/examples/BLE_client/BLE_client.ino +++ b/examples/BLE_client/BLE_client.ino @@ -87,6 +87,7 @@ bool connectToServer() { pRemoteCharacteristic->registerForNotify(notifyCallback); connected = true; + return true; } /** * Scan for BLE servers and find the first one that advertises the service we are looking for.