1
0
mirror of https://github.com/esphome/esphome.git synced 2025-10-19 10:13:49 +01:00

Send true and not RSSI in ble_presence (#3904)

This commit is contained in:
Frédéric Jouault
2022-10-14 01:47:05 +02:00
committed by Jesse Hills
parent 8bf34e09f4
commit b2d91ac5de

View File

@@ -58,7 +58,7 @@ class BLEPresenceDevice : public binary_sensor::BinarySensorInitiallyOff,
case MATCH_BY_SERVICE_UUID: case MATCH_BY_SERVICE_UUID:
for (auto uuid : device.get_service_uuids()) { for (auto uuid : device.get_service_uuids()) {
if (this->uuid_ == uuid) { if (this->uuid_ == uuid) {
this->publish_state(device.get_rssi()); this->publish_state(true);
this->found_ = true; this->found_ = true;
return true; return true;
} }
@@ -83,7 +83,7 @@ class BLEPresenceDevice : public binary_sensor::BinarySensorInitiallyOff,
return false; return false;
} }
this->publish_state(device.get_rssi()); this->publish_state(true);
this->found_ = true; this->found_ = true;
return true; return true;
} }