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> | |
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 | |
Unless required by applicable law or agreed to in writing, software |
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
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
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
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: "" |