Skip to content

Instantly share code, notes, and snippets.

@esbenr
Last active March 16, 2021 13:06
Show Gist options
  • Save esbenr/0ac888f60eda2c13c6fc764026daedfa to your computer and use it in GitHub Desktop.
Save esbenr/0ac888f60eda2c13c6fc764026daedfa to your computer and use it in GitHub Desktop.
Scenes and Colors for Home Assistant
{
"terrace":{
"entity":"light.terrace",
"scenes":[
"scene.terrace_low",
"scene.terrace_medium",
"scene.terrace_high"
],
"colors":[
[
255,
0,
0
],
[
255,
255,
0
],
[
0,
255,
0
],
[
0,
255,
255
],
[
0,
0,
255
]
]
},
"garden":{
"entity":"light.garden",
"scenes":[
"scene.garden_low",
"scene.garden_medium",
"scene.garden_high"
],
"colors":[
[
255,
0,
0
],
[
255,
255,
0
],
[
0,
255,
0
],
[
0,
255,
255
],
[
0,
0,
255
]
]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment