- Platform information:
- OS: Windows 10
- Java Runtime Environment: Zulu 11.43.5
- openHAB version: 3.0.0-M3
Hi All
I have noticed that when turning off my lights using the Hue Binding the Color Temperature item gets set to UNDEF. However the Brightness items gets set to 0%. Have checked via REST API and the actual state is UNDEF:
For Color Temp:
Response body
Download
{
"link": "http://localhost:8080/rest/items/LoungeRoom_ColorTemperature",
"state": "UNDEF",
"stateDescription": {
"minimum": 0,
"maximum": 100,
"pattern": "%.0f",
"readOnly": false,
"options": []
},
"editable": true,
"type": "Dimmer",
"name": "LoungeRoom_ColorTemperature",
"label": "Lounge Room Color Temperature",
"category": "ColorLight",
"tags": [
"Point"
],
"groupNames": [
"Lounge"
]
}
For Brightness:
Response body
Download
{
"link": "http://localhost:8080/rest/items/LoungeRoom_Brightness",
"state": "0",
"stateDescription": {
"minimum": 0,
"maximum": 100,
"pattern": "%d %%",
"readOnly": false,
"options": []
},
"editable": true,
"type": "Dimmer",
"name": "LoungeRoom_Brightness",
"label": "Lounge Room Brightness",
"category": "light",
"tags": [
"Point"
],
"groupNames": [
"Philipshue10163199253"
]
}
Both ITEMS have MIN and MAX of 0 and 100 (%).
I did try set the State Description Meta Data, but that did not help.
From what I understand the UNDEF could be as a result of loss of communication. Though this seems unlikely as the Brightness is always set correctly and the lights are responsive.
I also see that the is a long delay before the ITEM is updated when the lights are turned on again.
See the aminated GIF for example:
Not sure if this is a Binding issue or a local config issue?
Appreciate any advise.
Mark