Hallo zusammen,
ich versuche gerade im Homeassistant die waste_collection zum Laufen zu bringen.
in der configuration.yaml habe ich folgendes eingetragen:
waste_collection_schedule:
sources:
- name: ics
args:
file: "www/abfallkalender.ics"
customize:
- type: Papier
alias: papier
icon: mdi:trash-can
- type: "Restmüll"
alias: rest
icon: mdi:trash-can
- type: Glas
alias: glas
icon: mdi:trash-can
- type: LVP
alias: kunststoff
icon: mdi:trash-can
fetch_time: "04:00"
day_switch_time: "10:00"
die sensors.yaml sieht so aus
# Müll Temrine
- platform: waste_collection_schedule
name: AbfallRestmuell
details_format: "upcoming"
value_template: '{% if value.daysTo == 0 %}Heute{% elif value.daysTo == 1 %}Morgen{% else %}in {{value.daysTo}} Tagen{% endif %}'
types:
- rest
- platform: waste_collection_schedule
name: AbfallPapier
details_format: "upcoming"
value_template: '{% if value.daysTo == 0 %}Heute{% elif value.daysTo == 1 %}Morgen{% else %}in {{value.daysTo}} Tagen{% endif %}'
types:
- papier
- platform: waste_collection_schedule
name: AbfallKunststoff
details_format: "upcoming"
value_template: '{% if value.daysTo == 0 %}Heute{% elif value.daysTo == 1 %}Morgen{% else %}in {{value.daysTo}} Tagen{% endif %}'
types:
- kunststoff
- platform: waste_collection_schedule
name: AbfallGlas
details_format: "upcoming"
value_template: '{% if value.daysTo == 0 %}Heute{% elif value.daysTo == 1 %}Morgen{% else %}in {{value.daysTo}} Tagen{% endif %}'
types:
- glas
- platform: waste_collection_schedule
name: AbfallRestmuellnext
details_format: "upcoming"
value_template: 'am: {{value.date.strftime("%d.%m.%Y")}}'
types:
- rest
- platform: waste_collection_schedule
name: AbfallPapiernext
details_format: "upcoming"
value_template: 'am: {{value.date.strftime("%d.%m.%Y")}}'
types:
- papier
- platform: waste_collection_schedule
name: AbfallKunststoffnext
details_format: "upcoming"
value_template: 'am: {{value.date.strftime("%d.%m.%Y")}}'
types:
- kunststoff
- platform: waste_collection_schedule
name: AbfallGlasnext
details_format: "upcoming"
value_template: 'am: {{value.date.strftime("%d.%m.%Y")}}'
types:
- glas
- platform: waste_collection_schedule
name: AbfallNaechster
details_format: "upcoming"
value_template: ' {{ value.daysTo }} '
Die Sensoren liefern alle den Zustand unknown
Hat jemand hier vielleicht eine Idee woran das liegen könnte ?
Ach ja:
Das zeigt der Kalender an:
ich bin ratlos
Thomas
ich versuche gerade im Homeassistant die waste_collection zum Laufen zu bringen.
in der configuration.yaml habe ich folgendes eingetragen:
waste_collection_schedule:
sources:
- name: ics
args:
file: "www/abfallkalender.ics"
customize:
- type: Papier
alias: papier
icon: mdi:trash-can
- type: "Restmüll"
alias: rest
icon: mdi:trash-can
- type: Glas
alias: glas
icon: mdi:trash-can
- type: LVP
alias: kunststoff
icon: mdi:trash-can
fetch_time: "04:00"
day_switch_time: "10:00"
die sensors.yaml sieht so aus
# Müll Temrine
- platform: waste_collection_schedule
name: AbfallRestmuell
details_format: "upcoming"
value_template: '{% if value.daysTo == 0 %}Heute{% elif value.daysTo == 1 %}Morgen{% else %}in {{value.daysTo}} Tagen{% endif %}'
types:
- rest
- platform: waste_collection_schedule
name: AbfallPapier
details_format: "upcoming"
value_template: '{% if value.daysTo == 0 %}Heute{% elif value.daysTo == 1 %}Morgen{% else %}in {{value.daysTo}} Tagen{% endif %}'
types:
- papier
- platform: waste_collection_schedule
name: AbfallKunststoff
details_format: "upcoming"
value_template: '{% if value.daysTo == 0 %}Heute{% elif value.daysTo == 1 %}Morgen{% else %}in {{value.daysTo}} Tagen{% endif %}'
types:
- kunststoff
- platform: waste_collection_schedule
name: AbfallGlas
details_format: "upcoming"
value_template: '{% if value.daysTo == 0 %}Heute{% elif value.daysTo == 1 %}Morgen{% else %}in {{value.daysTo}} Tagen{% endif %}'
types:
- glas
- platform: waste_collection_schedule
name: AbfallRestmuellnext
details_format: "upcoming"
value_template: 'am: {{value.date.strftime("%d.%m.%Y")}}'
types:
- rest
- platform: waste_collection_schedule
name: AbfallPapiernext
details_format: "upcoming"
value_template: 'am: {{value.date.strftime("%d.%m.%Y")}}'
types:
- papier
- platform: waste_collection_schedule
name: AbfallKunststoffnext
details_format: "upcoming"
value_template: 'am: {{value.date.strftime("%d.%m.%Y")}}'
types:
- kunststoff
- platform: waste_collection_schedule
name: AbfallGlasnext
details_format: "upcoming"
value_template: 'am: {{value.date.strftime("%d.%m.%Y")}}'
types:
- glas
- platform: waste_collection_schedule
name: AbfallNaechster
details_format: "upcoming"
value_template: ' {{ value.daysTo }} '
Die Sensoren liefern alle den Zustand unknown
Hat jemand hier vielleicht eine Idee woran das liegen könnte ?
Ach ja:
Das zeigt der Kalender an:
ich bin ratlos
Thomas