Component to integrate with the following providers/communities. Be aware that your communict
Provider |
---|
acv (ximmio) |
afvalstoffendienstkalender |
alkmaar |
areareiniging (ximmio) |
avri (ximmio) |
assen (burgerportaal) |
bar (burgerportaal) |
rwn (burgerportaal) |
circulus |
deafvalapp |
eemsdelta (iCalendar) |
hellendoorn (ximmio) |
mijnafvalwijzer (also for afvalstoffendienstkalender) |
nijkerk |
alphenaandenrijn (opzet) |
afval3xbeter (opzet) |
berkelland (opzet) |
blink (opzet) |
cranendonck (opzet) |
cyclus (opzet) |
dar (opzet) |
defryskemarren (opzet) |
denhaag (opzet) |
gad (opzet) |
hvc (opzet) |
lingewaard (opzet) |
middelburg (opzet) |
mijnafvalzaken (opzet) |
montfoort (opzet) |
offalkalinder (opzet) |
peelenmaas (opzet) |
prezero (opzet) |
purmerend (opzet) |
rwm (opzet) |
saver (opzet) |
schouwen (opzet) |
sliedrecht (opzet) |
spaarnelanden (opzet) |
sudwestfryslan (opzet) |
suez (opzet) |
venray (opzet) |
voorschoten (opzet) |
waalre (opzet) |
zrd (opzet) |
reinis (ximmio) |
rd4 |
rova |
rmn |
schouwenand |
twentemilieu (ximmio) |
veldhoven (iCalendar) |
waardlanden |
almere (ximmio) |
avalex (ximmio) |
meerlanden (ximmio) |
rad (ximmio) |
westland (ximmio) |
woerden (ximmio) |
This custom component dynamically creates sensor.afvalwijzer_* items. For me personally the items created are gft, restafval, papier, pmd and kerstbomen. Look in the states overview in the developer tools in Home Assistant what the sensor names for your region are and modify where necessary.
This component will set up the following platform(s).
Platform | Description |
---|---|
sensor |
Show waste pickup dates |
The second row sorts the waste items by date using the following lovelace code
- type: custom:auto-entities
card:
type: glance
filter:
exclude:
- entity_id: sensor.afvalwijzer_*next*
- entity_id: sensor.afvalwijzer_day_after_tomorrow*
- entity_id: sensor.afvalwijzer_today*
- entity_id: sensor.afvalwijzer_tomorrow*
- entity_id: sensor.afvalwijzer_kerstbomen*
- entity_id: sensor.afvalwijzer_*orgen
- entity_id: sensor.afvalwijzer_van*
include:
- entity_id: sensor.afvalwijzer_*
options:
format: date
sort:
method: state
- entities:
- style:
background: '#62717b'
height: 1px
margin-left: auto
margin-right: auto
type: divider
type: entities
- type: markdown
content: >-
<center>De volgende leging is {{ states('sensor.afvalwijzer_next_type')
}}. Dat is over {{ states('sensor.afvalwijzer_next_in_days') }} {% if
is_state('sensor.afvalwijzer_next_in_days', '1') %}dag{% else %}dagen{%
endif %}.</center>
More information on the reminders (ios in this case):
- https://github.com/xirixiz/my-hass-config/blob/master/packages/waste.yaml
- https://github.com/xirixiz/my-hass-config/blob/05d8755a737676b60faac98dc0cce91d06277939/configuration.yaml#L73
- Navigate to your Home Assistant configuration directory (where your
configuration.yaml
is located). - Create a folder named
custom_components
if it doesn't exist. - Inside the
custom_components
folder, create another folder namedafvalwijzer
. - Clone this repository or download the source code and copy all files from the
custom_components/afvalwijzer/
directory to the newly createdafvalwijzer
folder. - Restart Home Assistant to load the custom component.
After following these steps, your directory structure should look like this:
custom_components/
afvalwijzer/
**init**.py
manifest.json
sensor.py
config_flow.py
...
- Ensure HACS is installed in your Home Assistant setup. If not, follow the HACS installation guide.
- Open the HACS panel in Home Assistant.
- Click on the
Frontend
orIntegrations
tab. - Click the
+
button and search forAfvalwijzer
. - Click
Install
to add the component to your Home Assistant setup. - Restart Home Assistant after the installation completes.
- Go to the Settings → Devices & Services page in Home Assistant.
- Click Add Integration and search for
Afvalwijzer
. - Follow the on-screen instructions to complete the setup.
- Provide your postal code, street number, and any other required details.
After completing the config flow, the integration will dynamically create sensors for waste collection dates based on your chosen provider.
https://github.com/home-assistant/example-custom-config/tree/master/custom_components/example_sensor
To enable debug logging for troubleshooting, add the following lines to your configuration.yaml
:
logger:
default: info
logs:
custom_components.afvalwijzer: debug
Here's an example of my own Home Asisstant config: https://github.com/xirixiz/home-assistant
sensor:
- platform: afvalwijzer
provider: mijnafvalwijzer # (required, default = mijnafvalwijzer) choose the provider for your community.
postal_code: 1234AB # (required, default = '')
street_number: 5 # (required, default = '')
suffix: '' # (optional, default = '')
exclude_pickup_today: true # (optional, default = true) to take or not to take Today into account in the next pickup.
date_isoformat: false # (optional, default = false) show the date in full isoformat if desired. Example: "2024-01-14T08:40:33.993521"
default_label: geen # (optional, default = geen) label if no date found
id: '' # (optional, default = '') use if you'd like to have multiple waste pickup locations in HASS
exclude_list: '' # (optional, default = '') comma separated list of wast types (case ignored). F.e. "papier, gft, restafval, pmd, etc"
input_boolean:
waste_moved:
name: Waste has been moved
initial: 'off'
icon: mdi:delete-empty
waste_reminder:
name: Waste reminder enabled
initial: 'on'
automation:
- alias: Reset waste notification
trigger:
platform: state
entity_id: input_boolean.waste_moved
to: 'on'
for:
hours: 12
action:
- service: input_boolean.turn_off
entity_id: input_boolean.waste_moved
- service: input_boolean.turn_on
entity_id: input_boolean.waste_reminder
- alias: Mark waste as moved from notification
trigger:
platform: event
event_type: ios.notification_action_fired
event_data:
actionName: MARK_WASTE_MOVED
action:
- service: input_boolean.turn_on
entity_id: input_boolean.waste_moved
- alias: Waste has not been moved
trigger:
platform: time_pattern
hours: '/1'
condition:
condition: and
conditions:
- condition: state
entity_id: input_boolean.waste_moved
state: 'off'
- condition: state
entity_id: input_boolean.waste_reminder
state: 'on'
- condition: time
after: '18:00:00'
before: '23:00:00'
- condition: template
value_template: "{{ states('sensor.afvalwijzer_tomorrow') != 'geen' }}"
action:
- service: notify.family
data:
title: 'Afval'
message: 'Het is vandaag - {{ now().strftime("%d-%m-%Y") }}. Afvaltype(n): {{ states("sensor.afvalwijzer_tomorrow") }} wordt opgehaald op: {{ (now() + timedelta(days=1)).strftime("%d-%m-%Y") }}!'
data:
actions:
- action: 'MARK_WASTE_MOVED' # The key you are sending for the event
title: 'Afval buiten gezet' # The button title