diff --git a/fhem/FHEM/10_ZWave.pm b/fhem/FHEM/10_ZWave.pm index 9964c9f25..f7a89c7c0 100755 --- a/fhem/FHEM/10_ZWave.pm +++ b/fhem/FHEM/10_ZWave.pm @@ -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.
  • dim value
    dim/jump to the requested value (0..100)
  • +
  • dimWithDuration value duration
    + 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.
  • stop
    stop dimming/operation