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"); } }