Was setting this puppy up for the first time and repeatedly when I make graphical changes and reload HASS, the interface will not load.
What should I change in my configuration file?
homeassistant:
# Name of the location where Home Assistant is running
name: Home
# Location required to calculate the time the sun rises and sets
latitude: 0
longitude: 0
# Impacts weather/sunrise data (altitude above sea level in meters)
elevation: 1457
# metric for Metric, imperial for Imperial
unit_system: imperial
# Pick yours from here: http://en.wikipedia.org/wiki/List_of_tz_database_time_zones
time_zone: UTC
# Customization file
customize: ##if you already have a "customize" section, then just add the "cover.double" and the rest to that section.
cover.double:
device_class: garage
friendly_name: Garage 1 #change this to whatever you want the door called in your HA UI "wife's door", "my side", etc.
sensor.temperature:
friendly_name: 'Drago T'
unit_of_measurement: '°F'
sensor.Humidity:
friendly_name: 'Drago H'
unit_of_measurement: '%'
# Show links to resources in log and frontend
introduction:
# Enables the frontend
frontend:
# Enables configuration UI
config:
cover: ## this makes the garage door card appear in HA
- platform: mqtt
name: "double"
state_topic: “cmnd/garagestat/POWER2”
command_topic: “cmnd/garage/POWER”
payload_open: “on”
payload_close: “off”
payload_stop: “on”
state_open: “on”
state_closed: “off”
optomistic: false
retain: false
# Uncomment this if you are using SSL/TLS, running in Docker container, etc.
http:
api_password: !secret "http_password"
# base_url: example.duckdns.org:8123
# Checks for available updates
# Note: This component will send some information about your system to
# the developers to assist with development of Home Assistant.
# For more information, please see:
# https://home-assistant.io/blog/2016/10/25/explaining-the-updater/
updater:
# Optional, allows Home Assistant developers to focus on popular components.
# include_used_components: true
# Discover some devices automatically
discovery:
mqtt:
broker: core-mosquitto
username: admin
password:
switch:
- platform: mqtt
name: "MB Toilet"
state_topic: "stat/masterbath/lights/toilet/power"
command_topic: "cmnd/masterbath/lights/toilet/power"
payload_on: "ON"
payload_off: "OFF"
qos: 1
retain: true
optimistic : true
- platform: mqtt
name: "MB Fan"
state_topic: "stat/masterbath/fan/1/power"
command_topic: "cmnd/masterbath/fan/1/power"
payload_on: "ON"
payload_off: "OFF"
qos: 1
retain: true
optimistic : true
- platform: mqtt
name: "MB Shower"
state_topic: "stat/masterbath/lights/shower/power"
command_topic: "cmnd/masterbath/lights/shower/power"
payload_on: "ON"
payload_off: "OFF"
qos: 1
retain: true
optimistic : true
- platform: mqtt
name: "MB Main"
state_topic: "stat/masterbath/lights/main/power"
command_topic: "cmnd/masterbath/lights/main/power"
payload_on: "ON"
payload_off: "OFF"
qos: 1
retain: true
optimistic : true
# Allows you to issue voice commands from the frontend in enabled browsers
conversation:
# Enables support for tracking state changes over time
history:
# View all events in a logbook
logbook:
# Enables a map showing the location of tracked devices
map:
# Track the sun
sun:
# Sensors
sensor:
- platform: mqtt
state_topic: 'tele/drago/SENSOR'
name: 'Temperature'
unit_of_measurement: '°F'
value_template: '{{ value_json.DHT11.Temperature }}'
- platform: mqtt
state_topic: 'tele/drago/SENSOR'
name: 'Humidity'
unit_of_measurement: '%'
value_template: '{{ value_json.DHT11.Humidity }}'
- platform: yr
# Text to speech
tts:
- platform: google
# Cloud
cloud:
group:
garage_doors:
name: Garage Doors
view: no
control: hidden
icon: mdi:garage
entities:
- cover.double
automation: !include automations.yaml
script: !include scripts.yaml