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: Add Hildebrand CAD Entities | |
| description: Create devices and entities using MQTT discovery | |
| domain: script | |
| source_url: https://gist.github.com/jamesonuk/079ed3639924e9f373783e5b67f4385d | |
| input: | |
| input_cad_mac: | |
| name: MAC Address | |
| description: "MAC address of CAD (without :s)" | |
| 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
| alias: Hot Tub On | |
| description: "" | |
| trigger: | |
| - platform: time | |
| at: "07:00:00" | |
| condition: [] | |
| action: | |
| - service: switch.turn_on | |
| data: {} | |
| target: |
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
| alias: Turn Hot Tub Off | |
| description: "" | |
| trigger: | |
| - platform: time | |
| at: "20:00:00" | |
| condition: [] | |
| action: | |
| - service: switch.turn_off | |
| data: {} | |
| target: |
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: Set TRV HVAC Status | |
| description: Set TRV to Heat / Off depending on temperature | |
| domain: automation | |
| input: | |
| input_trv: | |
| name: TRV | |
| description: The TRV to set | |
| selector: | |
| entity: |
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
| """ | |
| Copyright 2019 Jason Hu <awaregit at gmail.com> | |
| Modified 2020 Matthew Hilton <[email protected]> | |
| Refactor and Modernised 2025 Matthew Hilton <[email protected]> | |
| Licensed under the Apache License, Version 2.0 (the "License"); | |
| you may not use this file except in compliance with the License. | |
| You may obtain a copy of the License at | |
| http://www.apache.org/licenses/LICENSE-2.0 |
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: TRV External Temp | |
| description: > | |
| Sets the external temperature on a Sonoff TRV and ensures it is configured | |
| to use the external sensor. Select the TRV as a device — entities are | |
| resolved automatically. | |
| domain: automation | |
| source_url: https://gist.github.com/jamesonuk/83111e89e6a05aa728acad3524494be0 | |
| input: | |
| trv_device: |