I’m writing a simple script that cycles through colors for the lifx light. Is there any reason it’s limited to 5 states? It means that code like this won’t run as there are 8 states.
"states": [
{
"color": "red"
},
{
"color": "orange"
},
{
"color": "yellow"
},
{
"color": "green"
},
{
"color": "cyan"
},
{
"color": "blue"
},
{
"color": "purple"
},
{
"color": "pink"
}
],
"defaults": {
"power": "on", // all states default to on
"saturation": 0, // every state is white
"brightness": 0.5, // every state is white
"duration": 1.0 // all transitions will be applied over 1 seconds
}
}
```