Home Assistant Component for BEST Bottrop Garbage Collection Dates
This is a custom component for Homeassistant. It will fetch garbage collection dates for the city of [Bottrop] (https://www.bottrop.de/) provided by the municipal waste disposal service [BEST] (https://www.best-bottrop.de/) It will create sensors for your configured address that will show the next garbage collection dates for the trash types and how many days are left for the next collection. You can add those sensors to your automation our build up cards/dashboards in lovelace.
You can - of course - use the calender function of HA for recurrend events. But this integration is more flexible. You won't need to update your calendar anymore - and it will update automatically when special events occure like strikes etc.
Please note that this will only work for the city of Bottrop in Germany. No other city is supported!
- Use hacs with this repo URL https://github.com/Nazze/ha_best_bottrop_garbage_collection to your HACS configuration.
- Add integration from HACS
- Restart Homeassistant
- Go to "Settings" and "Devices and Services"
- Hit "Add Integration"
- Chose "BEST Bottrop garbage collection dates"
- Configure your address
- The integration will add the entities
The state means "days until collection", and the attributes will provide you with additional data.
You can now create beatiful dashboards for your collection.
Requires: auto-entities and mushroom-cards Replace "sensor.ernst*" with your wildcarded street
type: vertical-stack
title: Müllabfuhr
cards:
- type: custom:auto-entities
card:
type: entities
filter:
include:
- entity_id: sensor.ernst*
options:
type: custom:mushroom-template-card
primary: |
{{ states.this.entity_id.attributes.friendly_name }}
secondary: >
{% if states.this.entity_id.state|int == 1 %} Morgen {% elif
states.this.entity_id.state|int == 0 %} Heute {% else %} In {{
states.this.entity_id.state }} Tagen {% endif -%} ({{
as_timestamp(states.this.entity_id.attributes.next_date)|timestamp_custom("%d.%m.%Y")}})
icon: |
{{ states.this.entity_id.attributes.icon }}
icon_color: >
{% if states.this.entity_id.state|int <= 1 %} red {% elif
states.this.entity_id.attributes.trash_type_name == "Biotonne" %}
brown {% elif states.this.entity_id.attributes.trash_type_name ==
"Gelbe Tonne" %} yellow {% elif
states.this.entity_id.attributes.trash_type_name == "Papiertonne"
%} blue {% elif states.this.entity_id.attributes.trash_type_name
== "Graue Tonne" %} grey {% endif %}
tap_action:
action: call-service
service: best_bottrop_garbage_collection.ignore
service_data:
days: 2
target:
entity_id: this.entity_id
exclude:
- state: None
- state: unknown
- state: '> 7'
sort:
method: state
numeric: true
sort:
method: state
numeric: true
Double click on a garbage entity will ignore the collection for this trash type for 2 days.
Services will help you to ignore a garbage entity for the next defined days (because you brought out the garbage bin). The above Lovelace example makes use of this. If you want to manually set it or reset it, you can go to
- Developer Tools
- Services
- Select Service "BEST Bottrop garbage collection dates: ignore"
- Select the entity or multiple entities
- Define, how many days this sensor should be ignored (optional, default = 2, max=365, reset = 0)