1
0
mirror of https://github.com/esphome/esphome.git synced 2025-09-03 20:02:22 +01:00

Publish NAN when dallas conversion failed (#3227)

This commit is contained in:
Otto Winter
2022-02-19 14:11:01 +01:00
committed by GitHub
parent 125c693e3f
commit d594f43ebd

View File

@@ -111,6 +111,9 @@ void DallasComponent::update() {
if (!result) {
ESP_LOGE(TAG, "Requesting conversion failed");
this->status_set_warning();
for (auto *sensor : this->sensors_) {
sensor->publish_state(NAN);
}
return;
}