1.7 KiB
title, description, ha_category, ha_release, ha_iot_class, ha_domain
title | description | ha_category | ha_release | ha_iot_class | ha_domain | |
---|---|---|---|---|---|---|
ReCollect Waste | Instructions on how to set up Recollect Waste sensor within Home Assistant. |
|
0.87 | Cloud Polling | recollect_waste |
The recollect_waste
integration allows you to track the next scheduled waste pickup and what type of waste from Recollect. To use this sensor your city's waste company must be Recollect and you will need to find your place_id and service_id.
-
In Chrome open developer tools and go to the network tab.
-
Go to your city's Recollect collection calendar.
-
Search for and select your address in the UI.
-
Watch for a request that looks like
https://api.recollect.net/api/places/(place_id)/services/(service_id)/events?nomerge ...
-
Use the place_id and service_id when configuring the sensor.
Configuration
To enable this sensor, add the following lines to your configuration.yaml
:
# Example configuration.yaml entry
sensor:
- platform: recollect_waste
place_id: YOUR_PLACE_ID
service_id: YOUR_SERVICE_ID
{% configuration %} place_id: description: The place_id used for your neighbourhood. required: true type: string service_id: description: The service_id used for your city. required: true type: string name: description: Name the sensor. required: false type: string default: recollect_waste {% endconfiguration %}
The default frequency for pulling data from Recollect Waste is once a day (86400 seconds).