mirror of
https://github.com/esphome/esphome.git
synced 2024-11-25 08:28:12 +01:00
Publish NAN when dallas conversion failed (#3227)
This commit is contained in:
parent
125c693e3f
commit
d594f43ebd
1 changed files with 3 additions and 0 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue