-
Platform information:
Intel CPU i5-6200U, 8GB RAM, 1TB HDD, Linux Debian Jessie (8.10), Oracle 64bit JVM build 1.8.0_161-b12, OH 2.3 Snapshot 1216 -
Issue of the topic: No issue, just a simple Rule syntax validation
(going from if statements to switch/case statements)
-
Please post configurations (if applicable):
/etc/openhab2/rules/Fib_Buttons.rules
file
old rule (version 1):
rule "Fibaro Button 01 Pushing"
when
Item FibBut01_Scene received update
then
if (FibBut01_Scene.state == 1.0) {
logInfo("FB01", "FB01 1x pushed")
WDim01_Dim.sendCommand(0)
}
if (FibBut01_Scene.state == 1.1) {
logInfo("FB01", "FB01 let go")
WDim01_Dim.sendCommand(10)
}
if (FibBut01_Scene.state == 1.2) {
logInfo("FB01", "FB01 kept in")
WDim01_Dim.sendCommand(50)
}
if (FibBut01_Scene.state == 1.3) {
logInfo("FB01", "FB01 2x pushed")
WDim01_Dim.sendCommand(100)
}
if (FibBut01_Scene.state == 1.4) {
logInfo("FB01", "FB01 3x pushed")
WDim01_Dim.sendCommand(3)
}
if (FibBut01_Scene.state == 1.5) {
logInfo("FB01", "FB01 4x pushed")
WDim01_Dim.sendCommand(2)
}
if (FibBut01_Scene.state == 1.6) {
logInfo("FB01", "FB01 5x pushed")
WDim01_Dim.sendCommand(1)
}
end
new rule (version 2):
rule "Fibaro Button 01 Pushing"
when
Item FibBut01_Scene received update
then
var FB01State = FibBut01_Scene.state
switch (FB01State) {
case 1.0: {
logInfo("FB01", "FB01 1x pushed, set Lights at 0%")
WDim01_Dim.sendCommand(0)
}
case 1.1: {
logInfo("FB01", "FB01 1x let go, set Lights at 10%")
WDim01_Dim.sendCommand(10)
}
case 1.2: {
logInfo("FB01", "FB01 1x kept in, set Lights at 50%")
WDim01_Dim.sendCommand(50)
}
case 1.3: {
logInfo("FB01", "FB01 2x pushed, set Lights at 100%")
WDim01_Dim.sendCommand(100)
}
case 1.4: {
logInfo("FB01", "FB01 3x pushed, set Lights at 3%")
WDim01_Dim.sendCommand(3)
}
case 1.5: {
logInfo("FB01", "FB01 4x pushed, set Lights at 2%")
WDim01_Dim.sendCommand(2)
}
case 1.6: {
logInfo("FB01", "FB01 5x pushed, set Lights at 1%")
WDim01_Dim.sendCommand(1)
}
default: {
logInfo("FB01", "FB01 State is: " + FB01State)
}
}
end
.
relevant items:
Dimmer WDim01_Dim "Staircase LED Dim [%d %%]" <slider> (gZWave) {channel="zwave:device:ZW090C:node4:switch_dimmer"}
Number FibBut01_Scene "FB01 Scene: [%s]" <contact> (gZWave) {channel="zwave:device:ZW090C:node9:scene_number"}
- If logs where generated please post these here using code fences:
No logs, since no errors existing in either case.
âoptimized/cleaner/shorterâ version 3 of the new rule syntax:
rule "Fibaro Button 01 Pushing"
when
Item FibBut01_Scene received update
then
var FB01State = FibBut01_Scene.state
switch (FB01State) {
case 1.0: {WDim01_Dim.sendCommand(0)}
case 1.1: {WDim01_Dim.sendCommand(10)}
case 1.2: {WDim01_Dim.sendCommand(50)}
case 1.3: {WDim01_Dim.sendCommand(100)}
case 1.4: {WDim01_Dim.sendCommand(3)}
case 1.5: {WDim01_Dim.sendCommand(2)}
case 1.6: {WDim01_Dim.sendCommand(1)}
default: {logInfo("FB01", "FB01 State is: " + FB01State)}
}
end
Any further improvement ideas on version 3 of the rule? (maybe cut that extra var FB01State line?)