Skip to content

Commit

Permalink
Update Brink_HR_bypass2.ino
Browse files Browse the repository at this point in the history
changed a bit bypass workaround part
  • Loading branch information
raf1000 authored Oct 2, 2023
1 parent 546ae62 commit f014064
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Arduino/Brink_HR_bypass2.ino
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ void loop()
}
if (sem_bypass == 1) //bypass is OPEN
{
if ( (tOut < tU5/2) || (tIn < tU4/2) || (tIn > tOut) ) //if true close bypass
if ( (tOut <= tU5/2) || (tIn <= tU4/2) || (tIn >= tOut) ) //if true close bypass
{
mqttClient.publish("brink/OpenThermStatus/get","WAIT"); // wait for bypass change
delay(150000); //stop 2,5 min
Expand Down

0 comments on commit f014064

Please sign in to comment.