I get this errors. And I´m searching a long time…
- Invalid config for [template]: [name] is an invalid option for [template]. Check: template->name. (See /config/configuration.yaml, line 55).
- Invalid config for [template]: [sensor] is an invalid option for [template]. Check: template->sensor->0->sensor. (See /config/configuration.yaml, line 62).
- Invalid config for [template]: [utility_meter] is an invalid option for [template]. Check: template->utility_meter. (See /config/configuration.yaml, line 67).
- Invalid config for [template]: [name] is an invalid option for [template]. Check: template->name. (See /config/configuration.yaml, line 81).
- Invalid config for [template]: [sensor] is an invalid option for [template]. Check: template->sensor->1->sensor. (See /config/configuration.yaml, line 54).
My configuration.yaml
# THEMES
frontend:
themes: !include_dir_merge_named themes
# Loads default set of integrations. Do not remove.
default_config:
# Text to speech
tts:
- platform: google_translate
automation: !include automations.yaml
script: !include scripts.yaml
scene: !include scenes.yaml
############## Helium include ############################
###### ergänzt für Nachrichten an App
mobile_app:
action:
- service: notify.mobile_app_iPhone von Alwin (3291))
data:
title: "TV wurde angeschaltet"
message: "Fernseher wurde angeschaltet"
######################### VU Integration ###############################
media_player: !include vuplus.yaml
# - platform: enigma2
# host: 192.168.10.99
# name: VU+ Wohn
# use_channel_icon: true
# - platform: enigma2
# host: 192.168.10.60
# name: VU+ Schlaf
# use_channel_icon: true
#########################################################################
############ Example configuration.yaml entry WOL VU Schlaf #############
switch:
- platform: wake_on_lan
mac: 00:1D:EC:06:A9:30
#########################################################################
# Wetterwarnung Deutscher Wetterdienst
#sensor:
# - platform: dwd_weather_warnings
# region_name: Wetterwrnung Moormerland
# region_name: 803457014
#################### TEMPLATE BEREICH ###############################
## Solar-Log
template:
sensor:
- name: "Solarlog yield day"
state: "{{ (states('sensor.solarlog_yield_day') | float(default=0) * 1000) | round(0,default=0) }}"
##############################################################################
########## Hier werden Shelly 3em gesamtsensoren eingebunden ################
###############################################################################
- sensor:
!include shelly3em.yaml
- utility_meter:
!include utility_meter.yaml
###############################################################################
#############################################################################
##############################################################################
######################################################
############### Tesla Energy Dashboard ###############
######################################################
# Calculate the power used by the home from known values of solar generation, battery charge/discharge, and grid demand
- name: "Home Power"
unit_of_measurement: 'W'
device_class: 'power'
state_class: 'measurement'
state: >-
{% set power = ((states('sensor.power_import')|int) + (states('sensor.solarlog_garage_power_ac')|int)) + (states('sensor.STP10.0-3SE-40 562 OST grid_power')|int)) - (states('sensor.power_export')|int) + states('sensor.simulated_power_battery')|int(default=0) %}
{% if power > 0 %}
{{ power }}
{% else -%}
0
{% endif %}
####### TEMPLATE BEREICH ENDE #########################################
#################### Modbus WR SMA Tripower einbinden #################
modbus: !include modbus.yaml
############################################################################
# sensors:
# - name: PV_Gesamtertrag
# unit_of_measurement: kWh
# slave: 3
# address: 30531
# input_type: input
# count: 2
# device_class: energy
# state_class: total_increasing
# - name: PV_Leistung
# unit_of_measurement: W
# slave: 3
# address: 30775
# input_type: input
# count: 2
# device_class: power
# state_class: measurement
# - name: PV_Tagesertrag
# unit_of_measurement: Wh
# slave: 3
# address: 30517
# count: 4
# input_type: input #data_type: int
# device_class: energy
# state_class: total_increasing
# ENDe Der Sektion VOR CHATGPT
notify:
- name: "Homeassistant_Email"
platform: smtp
server: "mail.gmx.net" #smtp
sender: "[email protected]"
recipient: # "[email protected]"
- "[email protected]"
- "[email protected]"
- "[email protected]"
- "[email protected]"
username: "[email protected]"# password: "xxxxxxx"
encryption: starttls
####### waste_collection_schedule source configuration
waste_collection_schedule:
sources:
- name: jumomind_de
args:
service_id: mymuell
city_id: 71133
area_id: 760
sensor:
# ------- Garbage Collection -------
# Nächste Abholung
- platform: waste_collection_schedule
name: "Nächste Abholung"
value_template: '{{value.types|join(", ")}}{% if value.daysTo == 0 %} Heute{% elif value.daysTo == 1 %} Morgen{% else %} in {{value.daysTo}} Tagen{% endif %}'
# Nächste Restmüll-Abholung
- platform: waste_collection_schedule
name: "Hausmüll"
value_template: '{{value.types|join(", ")}}{% if value.daysTo == 0 %} Heute{% elif value.daysTo == 1 %} Morgen{% else %} in {{value.daysTo}} Tagen{% endif %}'
types:
- Hausmüll
# - Restmüll
# Nächste Biomüll Abholung
- platform: waste_collection_schedule
name: "Biomüll"
value_template: '{{value.types|join(", ")}}{% if value.daysTo == 0 %} Heute{% elif value.daysTo == 1 %} Morgen{% else %} in {{value.daysTo}} Tagen{% endif %}'
types:
- Bio Müll
# Nächste gelber-Sack Abholung
- platform: waste_collection_schedule
name: "Gelber Sack"
value_template: '{{value.types|join(", ")}}{% if value.daysTo == 0 %} Heute{% elif value.daysTo == 1 %} Morgen{% else %} in {{value.daysTo}} Tagen{% endif %}'
types:
- Gelber Sack
# Nächste Papiermüll Abholung
- platform: waste_collection_schedule
name: "Blaue Tonne"
value_template: '{{value.types|join(", ")}}{% if value.daysTo == 0 %} Heute{% elif value.daysTo == 1 %} Morgen{% else %} in {{value.daysTo}} Tagen{% endif %}'
types:
- Blaue Tonne
Thanxs