2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-04-08 13:24:56 +00:00

10_ZWave.pm: switch_multilevel stop patch from krikan (Forum #36711)

git-svn-id: https://svn.fhem.de/fhem/trunk@8504 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
rudolfkoenig 2015-04-30 19:19:38 +00:00
parent b41f5529b2
commit 07d1c7a134

View File

@ -38,7 +38,8 @@ my %zwave_class = (
SWITCH_MULTILEVEL => { id => '26',
set => { off => "0100",
on => "01FF",
dim => "01%02x" },
dim => "01%02x",
stop => "05" },
get => { swmStatus => "02", },
parse => { "032603(.*)"=> '($1 eq "00" ? "state:off" :
($1 eq "ff" ? "state:on" :
@ -346,8 +347,8 @@ my %zwave_deviceSpecial = (
set => { positionSlat=>"010f26010100%02x",
positionBlinds=>"010f260102%02x00",},
get => { position=>"010f2602020000", },
parse => { "010f260303(..)(..)" =>'sprintf("position:Blinds %d Slat %d",'.
'hex($1),hex($2))' } } },
parse => { "0891010f260303(..)(..)" =>
'sprintf("position:Blinds %d Slat %d",hex($1),hex($2))' } } },
Philio_PAN04 => {
METER => {
get => { meter => "01",
@ -1697,7 +1698,9 @@ s2Hex($)
<li>on, off<br>
the same as for SWITCH_BINARY.</li>
<li>dim value<br>
dim to the requested value (0..100)</li>
dim/jump to the requested value (0..100)</li>
<li>stop<br>
stop dimming/operation</li>
<br><br><b>Class SCENE_ACTIVATION</b>