First I want to give a shout out to Jer78, he has helped me along this far and I want him to know how much I appreciate him!
This is what im seeing on my home screen.
1
Finally last night my Wemo devices were discovered by homebridge, even though its not showing.as loaded.
does anybody know how to fix this fireplace Boolean, it doesn’t work and is showing backlight & flame color
heres my config.
homeassistant:
# Name of the location where Home Assistant is running
name: Home
# Location required to calculate the time the sun rises and sets
latitude: 41.0979
longitude: -80.7613
# Impacts weather/sunrise data (altitude above sea level in meters)
elevation: 0
# 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: America/New_York
# Enables configuration UI
config:
# Cloud
cloud:
# Enables the frontend
frontend:
http:
# Secrets are defined in the file secrets.yaml
# api_password: !secret http_password
# Uncomment this if you are using SSL/TLS, running in Docker container, etc.
# base_url: example.duckdns.org:8123
# Allows you to issue voice commands from the frontend in enabled browsers
conversation:
# Discover some devices automatically
discovery:
# 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:
remote:
- platform: harmony
name: Living Room
host: 192.168.86.47 #Add the IP address of your harmony remote
# go to the secrets.yaml file and add your passwords there
username: !secret harmony_username
password: !secret harmony_password
activity: 'TV'
# Track the sun
sun:
# Text to speech
tts:
- platform: google
# Checks for available updates
updater:
# Optional, allows Home Assistant developers to focus on popular components.
# include_used_components: true
# 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/
############################################################
# THESE SECTIONS ARE IN OTHER FILES #
# e.g. If you add a sensor, just put the platform in #
# the sensors.yaml file and not in this configuration #
############################################################
custom: !include customize.yaml
sensor: !include sensors.yaml
input_boolean: !include input_booleans.yaml
input_select: !include input_selects.yaml
group: !include groups.yaml
automation: !include automations.yaml
script: !include scripts.yaml
############################################################
Automations:
#######################################################
# FIREPLACE #
#######################################################
- id: fireplace_on
alias: Turn on Fireplace
initial_state: 'on'
trigger:
- platform: state
entity_id: input_boolean.fireplace
to: 'on'
action:
- service: remote.send_command
entity_id: remote.livingroom
data:
device: "52670895"
command: "On/Off"
- service: remote.send_command
entity_id: remote.livingroom
data:
device: "52670895"
command: "Backlight"
- service: remote.send_command
entity_id: remote.livingroom
data:
device: "52670895"
command: "Flame Color"
num_repeats: 2
- service: remote.send_command
entity_id: remote.livingroom
data:
device: "52670895"
command: "Heat"
- id: fireplace_off
alias: Turn off Fireplace
initial_state: 'on'
trigger:
- platform: state
entity_id: input_boolean.fireplace
to: 'off'
action:
- service: remote.send_command
entity_id: remote.livingroom
data:
device: "52670895"
command: "On/Off"
#######################################################
# LIVING ROOM HARMONY #
#######################################################
- alias: "Living Room Harmony Hub Input"
initial_state: on
trigger:
- platform: state
entity_id: input_select.harmony_remote_living_room
action:
- service: script.turn_on
data_template:
entity_id: >-
{% set living_room_harmony = states.input_select.harmony_remote_living_room.state %}
{% if living_room_harmony == "TV"%}script.livingroom_harmony_tv
{% else %}script.living_room_harmony_off
{% endif %}
- alias: "Living Room Harmony Hub"
initial_state: on
trigger:
- platform: state
entity_id: sensor.harmony_remote_living_room
- platform: homeassistant
event: start
action:
- service: input_select.select_option
entity_id: input_select.harmony_remote_living_room
data_template:
option: >-
{% set living_room_harmony = states.sensor.harmony_remote_living_room.state %}
{{living_room_harmony}}
Groups:
default_view:
view: yes
name: Home
entities:
- input_select.harmony_remote_living_room
- sensor.livingroom_harmony_remote
- sun.sun
- sensor.yr_temperature
- group.fireplace
fireplace:
view: no
name: Fireplace
entities:
- input_boolean.fireplace
- script.living_room_fireplace_backlight
- script.living_room_fireplace_flame_color
Groups:
default_view:
view: yes
name: Home
entities:
- input_select.harmony_remote_living_room
- sensor.livingroom_harmony_remote
- sun.sun
- sensor.yr_temperature
- group.fireplace
fireplace:
view: no
name: Fireplace
entities:
- input_boolean.fireplace
- script.living_room_fireplace_backlight
- script.living_room_fireplace_flame_color
And my log
2018-03-26 04:43:26 WARNING (MainThread) [homeassistant.components.switch.wemo] Lost connection to Bed Light
2018-03-26 04:54:04 WARNING (MainThread) [homeassistant.components.switch.wemo] Lost connection to Bed Light
2018-03-26 04:54:09 WARNING (SyncWorker_15) [pywemo.ouimeaux_device.api.service] Error communicating with Bed Light, retry 0
2018-03-26 04:57:44 WARNING (MainThread) [homeassistant.components.switch.wemo] Lost connection to Bed Light
2018-03-26 04:58:50 WARNING (MainThread) [homeassistant.components.switch.wemo] Lost connection to Bed Light
2018-03-26 04:58:55 WARNING (SyncWorker_3) [pywemo.ouimeaux_device.api.service] Error communicating with Bed Light, retry 0
2018-03-26 04:59:34 WARNING (MainThread) [homeassistant.components.switch.wemo] Lost connection to Bed Light
2018-03-26 04:59:39 WARNING (SyncWorker_10) [pywemo.ouimeaux_device.api.service] Error communicating with Bed Light, retry 0
2018-03-26 05:00:18 WARNING (MainThread) [homeassistant.components.switch.wemo] Lost connection to Bed Light
2018-03-26 05:00:23 WARNING (SyncWorker_4) [pywemo.ouimeaux_device.api.service] Error communicating with Bed Light, retry 0
2018-03-26 05:02:52 WARNING (MainThread) [homeassistant.components.switch.wemo] Lost connection to Bed Light
2018-03-26 05:02:57 WARNING (SyncWorker_13) [pywemo.ouimeaux_device.api.service] Error communicating with Bed Light, retry 0
2018-03-26 08:28:20 WARNING (MainThread) [homeassistant.components.switch.wemo] Lost connection to Courtney Box Fan
2018-03-26 12:21:53 WARNING (MainThread) [homeassistant.components.switch.wemo] Lost connection to Bed Light
2018-03-26 17:58:35 ERROR (MainThread) [homeassistant.components] Config file not found: /config/customize.yaml
2018-03-26 17:58:37 ERROR (MainThread) [homeassistant.components.script] Config file not found: /config/customize.yaml
2018-03-26 17:58:38 ERROR (MainThread) [homeassistant.components.automation] Config file not found: /config/customize.yaml
2018-03-26 17:58:39 ERROR (MainThread) [homeassistant.components.group] Config file not found: /config/customize.yaml
2018-03-26 17:59:09 ERROR (MainThread) [homeassistant.components.hassio] starting version 3.2.4
Testing configuration at /config
Failed config
General Errors:
- Config file not found: /config/customize.yaml
Successful config (partial)
2018-03-26 18:14:32 ERROR (MainThread) [homeassistant.components.hassio] starting version 3.2.4
Testing configuration at /config
Failed config
General Errors:
- Component not found: data
- Component not found: custom
- Component not found: service
Successful config (partial)
2018-03-26 18:17:08 ERROR (MainThread) [homeassistant.components.hassio] starting version 3.2.4
Testing configuration at /config
Failed config
General Errors:
- Component not found: data
- Component not found: custom
- Component not found: service
Successful config (partial)
2018-03-26 18:19:19 ERROR (MainThread) [homeassistant.components.hassio] starting version 3.2.4
Testing configuration at /config
ERROR:homeassistant.util.yaml:mapping values are not allowed here
in “/config/configuration.yaml”, line 61, column 14
Failed config
General Errors:
- mapping values are not allowed here
in “/config/configuration.yaml”, line 61, column 14
Successful config (partial)
2018-03-26 18:23:44 ERROR (MainThread) [homeassistant.components.hassio] starting version 3.2.4
Testing configuration at /config
ERROR:homeassistant.util.yaml:mapping values are not allowed here
in “/config/configuration.yaml”, line 61, column 14
Failed config
General Errors:
- mapping values are not allowed here
in “/config/configuration.yaml”, line 61, column 14
Successful config (partial)
2018-03-26 18:41:33 ERROR (MainThread) [homeassistant.components.hassio] starting version 3.2.4
Testing configuration at /config
ERROR:homeassistant.util.yaml:mapping values are not allowed here
in “/config/configuration.yaml”, line 61, column 14
Failed config
General Errors:
- mapping values are not allowed here
in “/config/configuration.yaml”, line 61, column 14
Successful config (partial)
2018-03-26 18:52:06 ERROR (MainThread) [homeassistant.components.hassio] starting version 3.2.4
Testing configuration at /config
ERROR:homeassistant.util.yaml:expected ‘’, but found ‘’
in “/config/input_selects.yaml”, line 8, column 1
Failed config
General Errors:
- expected ‘’, but found ‘’
in “/config/input_selects.yaml”, line 8, column 1
Successful config (partial)
2018-03-26 18:53:22 ERROR (MainThread) [homeassistant.components.hassio] starting version 3.2.4
Testing configuration at /config
ERROR:homeassistant.util.yaml:expected ‘’, but found ‘’
in “/config/input_selects.yaml”, line 8, column 1
Failed config
General Errors:
- expected ‘’, but found ‘’
in “/config/input_selects.yaml”, line 8, column 1
Successful config (partial)
2018-03-26 18:56:57 ERROR (MainThread) [homeassistant.components.hassio] starting version 3.2.4
Testing configuration at /config
ERROR:homeassistant.util.yaml:expected ‘’, but found ‘’
in “/config/input_selects.yaml”, line 8, column 1
Failed config
General Errors:
- expected ‘’, but found ‘’
in “/config/input_selects.yaml”, line 8, column 1
Successful config (partial)
2018-03-26 19:02:27 ERROR (MainThread) [homeassistant.components.hassio] starting version 3.2.4
Testing configuration at /config
ERROR:homeassistant.util.yaml:expected ‘’, but found ‘’
in “/config/input_selects.yaml”, line 8, column 1
Failed config
General Errors:
- expected ‘’, but found ‘’
in “/config/input_selects.yaml”, line 8, column 1
Successful config (partial)
2018-03-26 19:04:21 ERROR (MainThread) [homeassistant.components.hassio] starting version 3.2.4
Testing configuration at /config
ERROR:homeassistant.util.yaml:expected ‘’, but found ‘’
in “/config/input_selects.yaml”, line 8, column 1
Failed config
General Errors:
- expected ‘’, but found ‘’
in “/config/input_selects.yaml”, line 8, column 1
Successful config (partial)
2018-03-26 19:23:12 ERROR (MainThread) [homeassistant.components.hassio] starting version 3.2.4
Testing configuration at /config
Failed config
group:
- Invalid config for [group]: Entity ID input_boolean.fireplace - script.living_room_fireplace_backlight - script.living_room_fireplace_flame_color is an invalid entity id for dictionary value @ data[‘group’][‘fireplace’][‘entities’]. Got [‘input_boolean.fireplace - script.living_room_fireplace_backlight - script.living_room_fireplace_flame_color’]. (See /config/configuration.yaml, line 85). Please check the docs at https://home-assistant.io/components/group/
- automation: [source /config/configuration.yaml:86]
- action: [source /config/automations.yaml:12]
- data: [source /config/automations.yaml:15]
command: On/Off
device: 52670895
entity_id: remote.harmony_remote_living_room
service: remote.send_command
- data: [source /config/automations.yaml:20]
command: Backlight
device: 52670895
entity_id: remote.harmony_remote_living_room
service: remote.send_command
- data: [source /config/automations.yaml:25]
command: Flame Color
device: 52670895
num_repeats: 2
entity_id: remote.harmony_remote_living_room
service: remote.send_command
- data: [source /config/automations.yaml:31]
command: Heat
device: 52670895
entity_id: remote.harmony_remote_living_room
service: remote.send_command
alias: Turn on Fireplace
id: fireplace_on
initial_state: on
trigger: [source /config/automations.yaml:8]
- platform: state
entity_id: input_boolean.fireplace
to: on
- action: [source /config/automations.yaml:42]
- data: [source /config/automations.yaml:45]
command: On/Off
device: 52670895
entity_id: remote.harmony_remote_living_room
service: remote.send_command
alias: Turn off Fireplace
id: fireplace_off
initial_state: on
trigger: [source /config/automations.yaml:38]
- platform: state
entity_id: input_boolean.fireplace
to: off
- action: [source /config/automations.yaml:58]
- data_template: [source /config/automations.yaml:60]
entity_id: {% set living_room_harmony = states.input_select.harmony_remote_living_room.state %} {% if living_room_harmony == “TV”%}script.livingroom_harmony_tv {% else %}script.living_room_harmony_off {% endif %}
service: script.turn_on
alias: Living Room Harmony Hub Input
initial_state: True
trigger: [source /config/automations.yaml:55]
- platform: state
entity_id: input_select.harmony_remote_living_room
- action: [source /config/automations.yaml:74]
- data_template: [source /config/automations.yaml:77]
option: {% set living_room_harmony = states.sensor.harmony_remote_living_room.state %} {{living_room_harmony}}
entity_id: input_select.harmony_remote_living_room
service: input_select.select_option
alias: Living Room Harmony Hub
initial_state: True
trigger: [source /config/automations.yaml:69]
- platform: state
entity_id: sensor.harmony_remote_living_room
- platform: homeassistant
event: start
cloud: ?
config: ?
conversation: ?
custom: ?
discovery: ?
frontend: ?
group: [source /config/configuration.yaml:85]
default_view: [source /config/groups.yaml:1]
entities: [source /config/groups.yaml:4]
- input_select.harmony_remote_living_room
- sensor.livingroom_harmony_remote
- sun.sun
- sensor.yr_temperature
- group.fireplace
name: Home
view: True
fireplace: [source /config/groups.yaml:11]
entities: [source /config/groups.yaml:14]
- input_boolean.fireplace - script.living_room_fireplace_backlight - script.living_room_fireplace_flame_color
name: Fireplace
view: False
history: ?
http: ?
input_boolean: [source /config/configuration.yaml:83]
fireplace: [source /config/input_booleans.yaml:1]
icon: mdi:fire
name: Fireplace
input_select: [source /config/configuration.yaml:84]
harmony_remote_living_room: [source /config/input_selects.yaml:1]
icon: mdi:monitor
name: Living Room Harmony
options: [source /config/input_selects.yaml:4]
- PowerOff
- TV
logbook: ?
map: ?
panel_iframe: ?
terminal: ?
icon: mdi:console-line
title: Terminal
url: http://192.168.XX.XX
remote: [source /config/configuration.yaml:45]
- platform: harmony
activity: TV
host: 192.168.86.47
name: Living Room
password: REPLACE_WITH_HARMONY_PASSWORD
username: REPLACE_WITH_HARMONY_USERNAME
script: [source /config/configuration.yaml:87]
living_room_fireplace_backlight: [source /config/scripts.yaml:25]
sequence: [source /config/scripts.yaml:26]
- data: [source /config/scripts.yaml:29]
command: Backlight
device: 52670895
entity_id: remote.livingroom
service: remote.send_command
living_room_fireplace_flame_color: [source /config/scripts.yaml:33]
sequence: [source /config/scripts.yaml:34]
- data: [source /config/scripts.yaml:37]
command: Flame Color
device: 52670895
entity_id: remote.livingroom
service: remote.send_command
living_room_fireplace_heat: [source /config/scripts.yaml:17]
sequence: [source /config/scripts.yaml:18]
- data: [source /config/scripts.yaml:21]
command: Heat
device: 52670895
entity_id: remote.livingroom
service: remote.send_command
living_room_harmony_off: [source /config/scripts.yaml:12]
sequence: [source /config/scripts.yaml:13]
- entity_id: remote.livingroom
service: remote.turn_off
livingroom_harmony_tv: [source /config/scripts.yaml:5]
sequence: [source /config/scripts.yaml:6]
- data: [source /config/scripts.yaml:9]
activity: 32445672
entity_id: remote.livingroom
service: remote.turn_on
sensor: [source /config/configuration.yaml:82]
- platform: yr
forecast: 24
monitored_conditions: [source /config/sensors.yaml:4]
- temperature
- symbol
- precipitation
- windSpeed
- pressure
- humidity
name: Weather
- platform: template
sensors: [source /config/sensors.yaml:17]
harmony_remote_living_room: [source /config/sensors.yaml:18]
value_template: {{states.remote.livingroom.attributes.current_activity}}
sun: ?
tts: [source /config/configuration.yaml:64]
- platform: google
updater: ?
General Errors:
- Component not found: custom
Successful config (partial)
group:
does anybody know what is going on here? if you need anything else let me know! Thanks