Changing states of Keypad
Is it possible to change the state of a buttons on the keypad? I want to set buttons for cool-down mode that will turn on water pump and fans until it has cooled down enough, then I would like this buttons to return to the off states.
68 Views
The best way to do this is to have the Keypad button mode as momentary.
Also set the off state and state 1 of the button to be output 1 status, and both green.
Then in the output function, Have it as
Output 1 on if
Keypad Button State Equals 1
OR
Output 1 State Equals 1
AND
Temperature > 60
This will latch the output on if the temp is > 60 when you press the button.