-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into external_measured_room_sensor
- Loading branch information
Showing
352 changed files
with
26,052 additions
and
6,121 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
www/lovelace-auto-entities/ | ||
custom_components/hwam_stove/ |
This file contains 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
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
62 changes: 62 additions & 0 deletions
62
blueprints/automation/homeassistant/better_thermostat_away_mode.yaml
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
--- | ||
blueprint: | ||
name: Better Thermostat Away mode | ||
description: Set BT Thermostats to Away mode if house is unoccupied. | ||
domain: automation | ||
# source_url: https://github.com/KartoffelToby/better_thermostat/blob/master/blueprints/away_mode.yaml | ||
input: | ||
occupancy_sensor: | ||
name: Occupancy | ||
selector: | ||
entity: | ||
domain: binary_sensor | ||
|
||
thermostat_target: | ||
name: Thermostats | ||
selector: | ||
target: | ||
device: | ||
integration: better_thermostat | ||
entity: | ||
integration: better_thermostat | ||
domain: climate | ||
|
||
away_temp: | ||
name: Away Temperature | ||
description: The target temperature when away | ||
default: 15 | ||
selector: | ||
number: | ||
min: 5 | ||
max: 35 | ||
unit_of_measurement: °C | ||
|
||
mode: queued | ||
max_exceeded: silent | ||
|
||
trigger: | ||
- platform: state | ||
entity_id: !input occupancy_sensor | ||
from: "on" | ||
to: "off" | ||
for: | ||
minutes: 5 | ||
- platform: state | ||
entity_id: !input occupancy_sensor | ||
from: "off" | ||
to: "on" | ||
condition: [] | ||
action: | ||
- if: | ||
- condition: state | ||
entity_id: !input occupancy_sensor | ||
state: "off" | ||
then: | ||
- service: better_thermostat.set_temp_target_temperature | ||
data: | ||
temperature: !input away_temp | ||
target: !input thermostat_target | ||
else: | ||
- service: better_thermostat.restore_saved_target_temperature | ||
data: {} | ||
target: !input thermostat_target |
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
translations |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.