2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-04-17 17:36:01 +00:00

Fixing SWITCH_MULTILEVEL parse command.

git-svn-id: https://svn.fhem.de/fhem/trunk@2843 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
rudolfkoenig 2013-03-02 16:58:17 +00:00
parent 516c04fbda
commit 069fa5b5db

View File

@ -56,8 +56,8 @@ my %zwave_class = (
reportOff => "0300", },
get => { swmStatus => "02", },
#03260363 reported in http://forum.fhem.de/index.php?t=rview&th=10216
parse => { "032603(.*)"=> '($1 == "00" ? "state:off" :
($1 == "ff" ? "state:on" :
parse => { "032603(.*)"=> '($1 eq "00" ? "state:off" :
($1 eq "ff" ? "state:on" :
"state:dim ".hex($1)))',}, },
SWITCH_ALL => { id => '27', },
SWITCH_TOGGLE_BINARY => { id => '28', },