Is there a way to remove light properties from a scene so that the scene captures that a light should be off, with no more detail?
TL;DR
- A light is on with a colour set
- Restore a scene for the containing group, in which that light is turned off
- Observed the light colour changing as it transitions off
It was very confusing why the colour was changing when the light was being turned off. I guess it makes sense if the scene attributes for that light include the extra colour settings. But it doesn’t seem desirable.
Using a Sowilo controller.
The saved scene has this light state:
{
"bri": 1,
"colormode": "xy",
"id": "79",
"on": false,
"transitiontime": 10,
"x": 0.2537422751201648,
"y": 0.1236896314946212
}
Would like it to have just:
{
"id": "79",
"on": false,
"transitiontime": 10
}
Not sure if this is a deconz issue/limitation or an issue with the controller behaviour itself.