diff --git a/CHANGED b/CHANGED index faa1e53af..53f0edaa9 100644 --- a/CHANGED +++ b/CHANGED @@ -1,5 +1,6 @@ # Add changes at the top of the list. Keep it in ASCII - SVN + - feature: HUEDevice: support SVG icons for LWB001 living whites bulb - feature: HUEDevice: support more than one bridge - feature: updateInBackground global attribute - feature: SYSSTAT: allow stateFormat diff --git a/FHEM/31_HUEDevice.pm b/FHEM/31_HUEDevice.pm index 0a0e48df2..069418232 100644 --- a/FHEM/31_HUEDevice.pm +++ b/FHEM/31_HUEDevice.pm @@ -78,6 +78,9 @@ HUEDevice_devStateIcon($) return undef if( ReadingsVal($name,"state","off") eq "off" || ReadingsVal($name,"bri","0") eq 0 ); + return undef + if( AttrVal($name, "model", "") eq "LWB001" ); + return undef if( AttrVal($name, "model", "") eq "LWL001" );