Skip to content

Commit

Permalink
Change this->value_faults_present_ to false
Browse files Browse the repository at this point in the history
  • Loading branch information
SeByDocKy authored Dec 10, 2024
1 parent 124b759 commit 19e631a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/pipsolar/pipsolar.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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';
Expand Down

0 comments on commit 19e631a

Please sign in to comment.