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
No known key found for this signature in database
GPG key ID: BEAAE804EFD8E83A

View file

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