Fixing SWITCH_MULTILEVEL parse command.

git-svn-id: svn://svn.code.sf.net/p/fhem/code/trunk@2843 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
rudolfkoenig
2013-03-02 16:58:17 +00:00
parent 42d04c6291
commit 88dc59c2d0

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', },