From 02ec97d557d1287589616cf497cc9db6362e16ba Mon Sep 17 00:00:00 2001 From: James Date: Thu, 25 Apr 2024 22:30:16 +0100 Subject: [PATCH] delim --- ESPBMS.ino | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ESPBMS.ino b/ESPBMS.ino index b47c9ac..91829ba 100644 --- a/ESPBMS.ino +++ b/ESPBMS.ino @@ -31,6 +31,8 @@ void loop() { Serial.println("Devices found: " + String(foundDevices.getCount())); for (int i = 0; i < foundDevices.getCount(); i++) { + Serial.printf("\r\n\r\n===============================\r\n\r\n"); + BLEAdvertisedDevice advertisedDevice = foundDevices.getDevice(i); Serial.println("\nFound Device: " + String(advertisedDevice.toString().c_str())); @@ -124,7 +126,6 @@ void loop() { } } pClient->disconnect(); - Serial.printf("\r\n\r\n===============================\r\n\r\n"); } }