diff --git a/fhem/FHEM/30_HUEBridge.pm b/fhem/FHEM/30_HUEBridge.pm index 06d9ff3aa..1073032ad 100644 --- a/fhem/FHEM/30_HUEBridge.pm +++ b/fhem/FHEM/30_HUEBridge.pm @@ -279,7 +279,7 @@ HUEBridge_Detect($) my $host = ''; if( defined($ret) && $ret ne '' && $ret =~ m/^[\[{].*[\]}]$/ ) { my $obj = eval { JSON->new->utf8(0)->decode($ret) }; - Log3 $name, 2, "$name: json error: $@ in $ret" if( $@ ); + Log3 $name, 2, "$name: json error: $@ in $ret" && return if( $@ ); if( defined($obj->[0]) && defined($obj->[0]->{'internalipaddress'}) ) { @@ -2743,7 +2743,7 @@ HUEBridge_dispatch($$$;$) } } else { - Log3 $name, 3, "$name: EventStream: update for unknown type $data->{type} received"; + Log3 $name, 3, "$name: EventStream: update for unknown type '$data->{type}' received"; $handled = 0; } @@ -3231,7 +3231,10 @@ __END__
  • deletesensor <id>
    Deletes the given sensor in the bridge and deletes the associated fhem device.
  • configlight <id> <json>
    - Write light config data.
  • + Sends the specified json string as configuration to the light <id>. You can use this e.g. to modify the startup behaviour + of a light. For a full list of available options see: + Config object attributes + (free Hue developer account needed, use wisely)
  • configsensor <id> <json>
    Write sensor config data.
  • setsensor <id> <json>