diff --git a/fhem/FHEM/10_ZWave.pm b/fhem/FHEM/10_ZWave.pm index 233840f21..424c2499e 100755 --- a/fhem/FHEM/10_ZWave.pm +++ b/fhem/FHEM/10_ZWave.pm @@ -157,7 +157,10 @@ my %zwave_class = ( THERMOSTAT_SETBACK => { id => '47', }, DOOR_LOCK_LOGGING => { id => '4c', }, SCHEDULE_ENTRY_LOCK => { id => '4e', }, - BASIC_WINDOW_COVERING => { id => '50', }, + BASIC_WINDOW_COVERING => { id => '50', + set => { coveringClose => "0140", + coveringOpen => "0100", + coveringStop => "02" , }, }, MTP_WINDOW_COVERING => { id => '51', }, CRC_16_ENCAP => { id => '56', }, MULTI_CHANNEL => { id => '60', # Version 2, aka MULTI_INSTANCE @@ -1089,6 +1092,21 @@ s2Hex($) wakeupReport:interval seconds target id + +

Class BASIC_WINDOW_COVERING +
  • coveringClose
    + Starts closing the window cover. Moving stops if blinds are fully colsed or + a coveringStop command was issued. +
  • +
  • coveringOpen
    + Starts opening the window cover. Moving stops if blinds are fully open or + a coveringStop command was issued. +
  • +
  • coveringStop
    + Stop moving the window cover. Blinds are partially open (closed). +
  • + +