From ed8f343aadef51328a26404bf8d006597cf1ff00 Mon Sep 17 00:00:00 2001 From: Pascal Vizeli Date: Tue, 13 Sep 2022 01:17:33 +0200 Subject: [PATCH] Remove status_set_error from ufire_ec (#3792) --- esphome/components/ufire_ec/ufire_ec.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/esphome/components/ufire_ec/ufire_ec.cpp b/esphome/components/ufire_ec/ufire_ec.cpp index d7ed890e21..7af4fadf75 100644 --- a/esphome/components/ufire_ec/ufire_ec.cpp +++ b/esphome/components/ufire_ec/ufire_ec.cpp @@ -12,7 +12,6 @@ void UFireECComponent::setup() { uint8_t version; if (!this->read_byte(REGISTER_VERSION, &version) && version != 0xFF) { this->mark_failed(); - this->status_set_error(); return; } ESP_LOGI(TAG, "Found ufire_ec board version 0x%02X", version);