ROVA


ROVA is a waste collection company that operates in the center and east of the Netherlands. The rova platform uses an unofficial ROVA API to allow you to get your waste collection schedule and integrate this in your Home Assistant installation.

Configuration

To use the ROVA sensor in your installation, add the following to your configuration.yaml file:

# Example configuration.yaml entry
sensor:
  - platform: rova
    zip_code: ZIP_CODE
    house_number: HOUSE_NUMBER

Configuration Variables

zip_code string Required

Your zip code.

house_number string Required

Your house number.

house_number_suffix string (Optional)

A suffix for your house number.

name string (Optional, default: Rova)

Let you overwrite the name of the device in the frontend.

monitored_conditions list (Optional)

ROVA information to be monitored. The following collection dates can be monitored.

bio

Upcoming collection date of your biodegradable waste

paper

Upcoming collection date of your paper waste

plastic

upcoming collection date of your plastic waste

residual

Upcoming collection date of your general waste

If no monitored_conditions are specified, only bio will be enabled.

Full configuration sample

A full configuration entry would look like the sample below.

# Example configuration.yaml entry
sensor:
  - platform: rova
    zip_code: ZIP_CODE
    house_number: HOUSE_NUMBER
    house_number_suffix: HOUSE_NUMBER_SUFFIX
    name: Rova
    monitored_conditions:
      - bio
      - paper
      - plastic
      - residual

To have your Home Assistant installation remind you of upcoming waste collections, combine the rova platform with some Automations and a notification platform.

# Example configuration.yaml entry for Rova waste collection reminder
automation:
  - id: rova-garbage-bio-reminder
    alias: "Send Rova Bio waste collection reminder"
    trigger:
      - platform: time
        at: "19:00:00"
    condition:
      - condition: template
        value_template: "{% if (as_timestamp(states('sensor.rova_garbage_gft')) - as_timestamp(now())) < 43200 %}true{% endif %}"
      - condition: template
        value_template: "{% if (as_timestamp(states('sensor.rova_garbage_gft')) - as_timestamp(now())) > 0 %}true{% endif %}"
    action:
      - service: NOTIFICATION_SERVICE
        data:
          message: "Reminder: put out biowaste bin"
This integration is not affiliated with Rova and retrieves data from the endpoints of their website. Use at your own risk.