Force output
Decides the reaction of the process's output on evaluation of the compound conditions Process timer and Variable constraints. By enabling:
- On - the process will automatically turn on its output one time once the compound conditions evaluate to
true
after being previously evaluated asfalse
(the Opening loop). - Off - the process will automatically turn off its output one time once the compound conditions evaluate to
false
after being previously evaluated astrue
(the Closing loop).
State of the relevant output is only written by this function once and is not enforced afterwards. It only remains unchanged until it is changed by an external user command, the process, or by any other relevant event.
[VALUE]
of this variable may assume values 0
or False
for disabling and 1
or True
for enabling this option.
HTTP
The device will accept HTTP requests at the following URLs related to:
- Force on:
(POST) http://[IPv4]
/var_set?param=frcon_[PROCESS ID]
&val=[VALUE]
(GET) http://[IPv4]
/var_request?param=frcon_[PROCESS ID]
- Force off:
(POST) http://[IPv4]
/var_set?param=frcoff_[PROCESS ID]
&val=[VALUE]
(GET) http://[IPv4]
/var_request?param=frcoff_[PROCESS ID]
POST: http://192.168.1.255/var_set?param=frcon_8&val=1
will force the Process #8 output to be turned
ON
after initially meeting the conditions.
Learn more in HTTP API.
MQTT
This parameter cannot be accessed via MQTT. Learn more in MQTT API.
Examples
This process will change the output to HIGH
once the constraints like Process timer and Variable constraints become satisfied after not being met:
However, it will not write LOW
output if the conditions are suddenly broken.