Hello !
I have a problem with a Philips Hue Lightstripe.
I switched from the HUE Bridge to the Conbee. All lights except one work as expected. After connecting, I can control this one for a moment. After that, the light no longer responds. I can only turn it on and off via the group. Individually it does not respond to commands. Under lights it is then also displayed as offline.
I have already changed the channel and restarted the Phoscon app, but that did not help.
Maybe someone still has an idea ?!
Mimiix
January 21, 2022, 7:21am
2
Can you share some logs? Check How to get logs? for how to get them.
Hi Mimiix,
here the logs:
Log debug.txt
Mimiix
January 21, 2022, 8:45am
4
I see the following:
08:27:48:400 APS-DATA.confirm id: 38, status: 0xA7 NO_ACK
0x00178801011CE1AB Which seems to be this device.
Either way, which light strip is this? The gradient one or the normal one?
The name of the light is Color Light 7 (00:17:88:01:00:ca:20:32-0b ?).
It is a normal Lightstripe without gradient of the first HUE generation.
I have two other Lightstripe (Hue LightStrip Plus) in use which show no abnormalities.
Mimiix
January 21, 2022, 9:01am
6
I have no clue in this case. I’ll check with the devs
1 Like
Any news on this? I’ve got the same problem with a Hue Lightstrip LST001.
Emil
July 15, 2022, 9:19am
8
I got mine working like this:
Removed it, paired it with the HUE bridge, deleted it from the hue bridge. It did not work and i did a light link reset with a hue dimmer.
Then it working again on Deconz
I also seem to be affected by a general HUE issue I have with all my hue lights. It seems Philips / Signify changed some end points and protocol in the bulbs together with the Vendor id.
Looks like some good progress is going on on git hub:
opened 07:44PM - 12 Jul 22 UTC
Device Request
## Device
- Product name: Hue white and color ambiance
- Manufacturer: Signify… Netherlands B.V.
- Model identifier: LCG002 (but also many others)
- Device type: Extended color light
As discussed on Discord, this likely concerns all recent Hue lights, that use the ZHA profile on endpoint 0x0B instead of ZLL.
These lights support attribute reporting for _On/Off_, _Current Level_, _Current X_, _Current Y_, _Color Temperature_ (but not: _Color Mode_, _Enhanced Color Mode_, and _Color Loop Active_). This should be leveraged to reduce polling.
With the latest firmware, these lights support dynamic scenes, _Candle_ and _Fireplace_, through the 0xFC03 cluster, similar to the Hue gradient light strip, see https://github.com/dresden-elektronik/deconz-rest-plugin/issues/5891. 0xFC03/0x0002 supports attribute reporting as well. This should be supported by additional values for `state.effect`, similar to the special scenes in the Müller lights or LIDL Xmas light strip.
I've hacked together a definition of 0xFC03 for `general.xml`, allowing me to set the dynamic scene, and query 0xFC03/0x0002. Unfortunately, the GUI doesn't show data type `ostring` in a useful way, but at least you can trigger a _Read Attributes_ and see the response in the sniffer.
```xml
<cluster id="0xfc03" name="Hue" mfcode="0x100b">
<description>Hue-specific cluster.</description>
<server>
<command id="0x00" dir="recv" name="Set Dynamic Scene" vendor="0x100b" required="m">
<payload>
<attribute id="0x0000" type="u16" name="Command" showas="hex" default="0x0020" required="m"/>
<attribute id="0x0001" type="bool" name="Enable" required="m"/>
<attribute id="0x0002" type="enum8" name="Scene" required="m">
<value name="None" value="0x00"/>
<value name="Candle" value="0x01"/>
<value name="Fireplace" value="0x02"/>
</attribute>
</payload>
</command>
<attribute id="0x0002" name="Status" type="ostring" mfcode="0x100b" access="r" required="m"/>
</server>
</cluster>
```
<!--
Please refer to https://github.com/dresden-elektronik/deconz-rest-plugin/wiki/Request-Device-Support
on how the Basic Cluster attributes are obtained.
-->
## Screenshots
![Screenshot 2022-07-12 at 21 25](https://user-images.githubusercontent.com/22179355/178577955-42375f6e-bce1-43c0-8c8c-c4af7e9ba9d8.png)
![Screenshot 2022-07-12 at 21 28](https://user-images.githubusercontent.com/22179355/178578035-9697a165-5842-45af-97c9-a136f90e2b11.png)
### Basic
![Screenshot 2022-07-12 at 21 39](https://user-images.githubusercontent.com/22179355/178579939-14f4c639-c19e-491c-afeb-71b8fc426d41.png)
### FC03
![Screenshot 2022-07-12 at 21 40](https://user-images.githubusercontent.com/22179355/178580041-c595a701-15d5-4c12-86a8-49a1467b4d56.png)