From 9a98c839b93374ebbc571ee914f3120482a36a62 Mon Sep 17 00:00:00 2001 From: rudolfkoenig <> Date: Wed, 19 Sep 2012 07:40:43 +0000 Subject: [PATCH] FSM61 by gaggi git-svn-id: https://svn.fhem.de/fhem/trunk@1870 2b470e98-0d58-463d-a4d8-8e2adae1ed80 --- fhem/FHEM/10_EnOcean.pm | 5 ++++- fhem/docs/commandref.html | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) 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)