diff --git a/fhem/FHEM/10_EnOcean.pm b/fhem/FHEM/10_EnOcean.pm index f21223ed5..e8ed57299 100755 --- a/fhem/FHEM/10_EnOcean.pm +++ b/fhem/FHEM/10_EnOcean.pm @@ -74,6 +74,7 @@ my @EnO_models = qw ( PM101 FTF55 FSB61 + FSM61 ); sub @@ -298,7 +299,9 @@ EnOcean_Parse($$) # the "real" state immediately. # In the case of an ElTako FSB61 the state should remain released (by Thomas) my $event = "state"; - $event = "buttons" if($msg =~ m/released$/ && $model ne "FSB61"); + $event = "buttons" if($msg =~ m/released$/ && + $model ne "FSB61" && + $model ne "FSM61"); push @event, "3:$event:$msg"; diff --git a/fhem/docs/commandref.html b/fhem/docs/commandref.html index e026eebd1..1af82838b 100644 --- a/fhem/docs/commandref.html +++ b/fhem/docs/commandref.html @@ -3951,7 +3951,7 @@ A line ending with \ will be concatenated with the next one, so long lines
  • buttons: released
    -
  • FSB61 (set model to FSB61 manually)
    +
  • FSB61/FSM61 (set model to FSB61 or FSM61 manually)