This commit is contained in:
Patrick Niebeling
2025-07-07 16:07:33 +02:00
parent 06c346a6af
commit e22af24474
5 changed files with 95 additions and 153 deletions

View File

@ -1,43 +1,3 @@
rule "Steuerung Tor 1"
when
Item REMWEBIO001_Ausgang0 changed to ON
then
Thread::sleep(1000)
REMWEBIO001_Ausgang0.sendCommand(OFF)
end
rule "Steuerung Tor 2"
when
Item REMWEBIO001_Ausgang1 changed to ON
then
Thread::sleep(1000)
REMWEBIO001_Ausgang1.sendCommand(OFF)
end
rule "Steuerung Tor 3"
when
Item REMWEBIO001_Ausgang2 changed to ON
then
Thread::sleep(1000)
REMWEBIO001_Ausgang2.sendCommand(OFF)
end
rule "Steuerung Tor 4"
when
Item REMWEBIO001_Ausgang3 changed to ON
then
Thread::sleep(1000)
REMWEBIO001_Ausgang3.sendCommand(OFF)
end
rule "Steuerung Tor 5"
when
Item REMWEBIO001_Ausgang4 changed to ON
then
Thread::sleep(1000)
REMWEBIO001_Ausgang4.sendCommand(OFF)
end
rule "MTF 1 (3-19-1) - Status 2"
when
Item FFStatus67641319 received update
@ -47,7 +7,7 @@ then
logInfo("REMWEBIO001.rules", "FunctioncheckSwitch: " + FunctioncheckSwitch.state.toString)
if( StartupSwitch.state == ON && FFStatus67641319.state == 2) {
logInfo("REMWEBIO001.rules", "Tor 1 öffnen")
// REMWEBIO001_Ausgang0.sendCommand(ON)
REMWEBIO001_Ausgang0.sendCommand(ON)
}
end