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
| --- | |
| blueprint: | |
| name: Shelly i4 Blueprint | |
| description: > | |
| Shelly i4 Blueprint | |
| Originally by Ltek | |
| 🚀 Version 2025.11.4 | |
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
| blueprint: | |
| name: Simple On + Reset | |
| description: | | |
| Turn on specified lights, or if already on then reset to colour and brightness | |
| source_url: https://gist.github.com/ps-jay/42e1320d39424136888eae7de59e2c6e | |
| domain: automation | |
| input: | |
| lights: | |
| name: Lights | |
| description: Lights to turn on |
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
| blueprint: | |
| name: Simple Off | |
| description: Turn off specified lights | |
| source_url: https://gist.github.com/ps-jay/f0475beb495b2a3eb1925cd8e21135b1 | |
| domain: automation | |
| input: | |
| lights: | |
| name: Lights | |
| description: Lights to turn off | |
| default: [] |
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
| blueprint: | |
| name: Simple Dim | |
| description: Dim specified lights by set percentage | |
| source_url: https://gist.github.com/ps-jay/f695833c2c76d3feb89613be6b7ec095 | |
| domain: automation | |
| input: | |
| lights: | |
| name: Lights | |
| description: Lights to dim | |
| default: [] |
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
| /usr/bin/vim temp2dash | |
| import json | |
| import requests | |
| import sys | |
| from temperusb import TemperHandler | |
| URL="http://localhost:3030/widgets/inside" | |
| SCALE=1.0 | |
| OFFSET=-1.0 |