From 19e631a60d6a6aa1f50b3023aca308a218c5ea78 Mon Sep 17 00:00:00 2001 From: SeByDocKy Date: Tue, 10 Dec 2024 08:39:34 +0100 Subject: [PATCH] Change this->value_faults_present_ to false --- components/pipsolar/pipsolar.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/pipsolar/pipsolar.cpp b/components/pipsolar/pipsolar.cpp index a69cb2f3..7d6ed639 100644 --- a/components/pipsolar/pipsolar.cpp +++ b/components/pipsolar/pipsolar.cpp @@ -591,7 +591,7 @@ void Pipsolar::loop() { // '(00000000000000000000000000000000' // iterate over all available flag (as not all models have all flags, but at least in the same order) this->value_warnings_present_ = false; - this->value_faults_present_ = true; + this->value_faults_present_ = false; for (size_t i = 1; i < strlen(tmp); i++) { enabled = tmp[i] == '1';