From a968dc29ce63da80a81caa37c28881dc72d65ff8 Mon Sep 17 00:00:00 2001 From: asas1asas200 Date: Tue, 31 Jan 2023 23:15:47 +0800 Subject: [PATCH] fix(BLE_client): add missing return value --- examples/BLE_client/BLE_client.ino | 2 ++ 1 file changed, 2 insertions(+) diff --git a/examples/BLE_client/BLE_client.ino b/examples/BLE_client/BLE_client.ino index 4c58299..cb01bff 100644 --- a/examples/BLE_client/BLE_client.ino +++ b/examples/BLE_client/BLE_client.ino @@ -87,6 +87,8 @@ 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.