1
0
mirror of https://github.com/esphome/esphome.git synced 2025-09-04 04:12:23 +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 Jesse Hills
parent c2f5ac9eba
commit 0c4de2bc97

View File

@@ -110,6 +110,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;
}