Last active
March 16, 2021 13:06
-
-
Save esbenr/0ac888f60eda2c13c6fc764026daedfa to your computer and use it in GitHub Desktop.
Scenes and Colors for Home Assistant
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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