Made changes to comply with new version. Took out HTML API information. Also
added upstairs temperature checker, and made changes to sleep light out automation. modified: configuration.yaml
This commit is contained in:
@@ -24,7 +24,7 @@ lovelace:
|
||||
config:
|
||||
|
||||
recorder:
|
||||
db_url: postgresql://ha:password@192.168.86.184/homeassistant
|
||||
db_url: postgresql://ha:password@docker.dandev.us/homeassistant
|
||||
purge_interval: 0
|
||||
|
||||
map:
|
||||
@@ -35,7 +35,7 @@ map:
|
||||
|
||||
http:
|
||||
# Secrets are defined in the file secrets.yaml
|
||||
api_password: ICYN30blah
|
||||
#api_password: ICYN30blah
|
||||
# Uncomment this if you are using SSL/TLS, running in Docker container, etc.
|
||||
|
||||
base_url: icyn30.duckdns.org:8123
|
||||
@@ -105,21 +105,21 @@ sensor:
|
||||
# name: 'Guest'
|
||||
# state_topic: 'happy-bubbles/presence/ha'
|
||||
# away_timeout: 60
|
||||
- platform: sonarr
|
||||
api_key: c544cae167164f11947c84ad4e04f61c
|
||||
host: 192.168.86.20
|
||||
monitored_conditions:
|
||||
- upcoming
|
||||
- diskspace
|
||||
days: 7
|
||||
# - platform: sonarr
|
||||
# api_key: c544cae167164f11947c84ad4e04f61c
|
||||
# host: 192.168.86.20
|
||||
# monitored_conditions:
|
||||
# - upcoming
|
||||
# - diskspace
|
||||
# days: 7
|
||||
- platform: template
|
||||
sensors:
|
||||
thermostat_current_status:
|
||||
value_template: "{{ states.climate.home.attributes.operation }}"
|
||||
value_template: "{{ states.climate.home.attributes.hvac_action }}"
|
||||
- platform: template
|
||||
sensors:
|
||||
thermostat_away_mode:
|
||||
value_template: "{{ states.climate.home.attributes.away_mode }}"
|
||||
value_template: "{{ states.climate.home.attributes.preset_mode }}"
|
||||
- platform: template
|
||||
sensors:
|
||||
thermostat_climate_mode:
|
||||
@@ -129,6 +129,13 @@ sensor:
|
||||
thermostat_outside_temperature:
|
||||
unit_of_measurement: "°F"
|
||||
value_template: "{{ float(states.weather.home.attributes.temperature) }}"
|
||||
- platform: mqtt
|
||||
state_topic: "upstairstemp/sensor/temp"
|
||||
name: "Upstairs Temperature"
|
||||
unit_of_measurement: "°F"
|
||||
- platform: mqtt
|
||||
state_topic: "DansPhone/sleepinfo"
|
||||
name: "sleep Info"
|
||||
|
||||
|
||||
# Text to speech
|
||||
@@ -185,6 +192,7 @@ influxdb:
|
||||
- sensor.home_temperature
|
||||
- sensor.home_humidity
|
||||
- sensor.thermostat_outside_temperature
|
||||
- sensor.upstairs_temperature
|
||||
- device_tracker.dan_dansphone
|
||||
- sensor.thermostate_current_status
|
||||
- sensor.thermostate_climate_mode
|
||||
|
||||
Reference in New Issue
Block a user