diff options
Diffstat (limited to 'sensor')
-rw-r--r-- | sensor/thermostat.ino | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/sensor/thermostat.ino b/sensor/thermostat.ino index b6d4102..4ab3833 100644 --- a/sensor/thermostat.ino +++ b/sensor/thermostat.ino @@ -41,10 +41,6 @@ class MyAdvertisedDeviceCallbacks: public BLEAdvertisedDeviceCallbacks { void onResult(BLEAdvertisedDevice advertisedDevice) { // We have found a device, let us now see if it contains the service we are looking for. - String results = "Found: \n"; - results += String(advertisedDevice.getAddress().toString().c_str()); - show(results); - if (advertisedDevice.haveName() && advertisedDevice.getName() == "termostore") { advertisedDevice.getScan()->stop(); |