10_ZWave.pm: dimWithDuration (Forum #50341)

git-svn-id: https://svn.fhem.de/fhem/trunk@11317 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
rudolfkoenig
2016-04-26 18:59:18 +00:00
parent 7342d60c63
commit 900354d4a7

View File

@@ -66,6 +66,7 @@ my %zwave_class = (
set => { off => "0100",
on => "01FF",
dim => "01%02x",
dimWithDuration => "01%02x%02x",
stop => "05" },
get => { swmStatus => "02", },
parse => { "032603(.*)"=> '($1 eq "00" ? "state:off" :
@@ -4495,6 +4496,10 @@ s2Hex($)
the same as for SWITCH_BINARY.</li>
<li>dim value<br>
dim/jump to the requested value (0..100)</li>
<li>dimWithDuration value duration<br>
dim/jump to the requested value (0..100) in duration time. If duration is
less than 128, then it is interpreted as seconds, if it is between 128 and
254, then as duration-128 minutes.</li>
<li>stop<br>
stop dimming/operation</li>