-
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 stepped-dimming
- Loading branch information
Showing
286 changed files
with
13,524 additions
and
6,884 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
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.
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 |
60 changes: 60 additions & 0 deletions
60
blueprints/automation/homeassistant/better_thermostat_night_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,60 @@ | ||
--- | ||
blueprint: | ||
name: Better Thermostat Night mode | ||
description: Set BT Thermostats to night mode if Schedule event is active. | ||
domain: automation | ||
source_url: https://github.com/KartoffelToby/better_thermostat/blob/master/blueprints/night_mode.yaml # yamllint disable-line rule:line-length | ||
input: | ||
night_times_schedule: | ||
name: Schedule helper | ||
selector: | ||
entity: | ||
domain: schedule | ||
|
||
thermostat_target: | ||
name: Thermostats | ||
selector: | ||
target: | ||
device: | ||
integration: better_thermostat | ||
entity: | ||
integration: better_thermostat | ||
domain: climate | ||
|
||
night_temp: | ||
name: Night Temperature | ||
description: The target temperature at night | ||
default: 17 | ||
selector: | ||
number: | ||
min: 5 | ||
max: 35 | ||
unit_of_measurement: °C | ||
|
||
mode: queued | ||
max_exceeded: silent | ||
|
||
trigger: | ||
- platform: state | ||
entity_id: !input night_times_schedule | ||
from: "on" | ||
to: "off" | ||
- platform: state | ||
entity_id: !input night_times_schedule | ||
from: "off" | ||
to: "on" | ||
condition: [] | ||
action: | ||
- if: | ||
- condition: state | ||
entity_id: !input night_times_schedule | ||
state: "on" | ||
then: | ||
- service: better_thermostat.set_temp_target_temperature | ||
data: | ||
temperature: !input night_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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,19 @@ | ||
- platform: generic_thermostat | ||
name: House | ||
unique_id: rest_of_house_thermostat | ||
name: Rest of House Thermostat | ||
heater: input_boolean.call_for_rad_heat | ||
target_sensor: sensor.house_average_temperature | ||
target_sensor: sensor.rest_of_house_average_temperature | ||
min_temp: 10 | ||
max_temp: 25 | ||
away_temp: 15 | ||
cold_tolerance: 0.2 | ||
hot_tolerance: 0.2 | ||
|
||
- platform: generic_thermostat | ||
unique_id: hot_water_thermostat | ||
name: Hot Water | ||
heater: switch.boiler_valve_controls_relay_1 | ||
target_sensor: sensor.hot_tank_temperature | ||
max_temp: 80 | ||
away_temp: 20 | ||
cold_tolerance: 10 | ||
cold_tolerance: 5 |
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.