1
0
mirror of https://github.com/esphome/esphome.git synced 2025-09-02 11:22:24 +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 GitHub
parent 4bf94e0757
commit 225b3c1494

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