Franck Nijhof c464056402
Making our website faster, cleaner and prettier (#9853)
* 🔥 Removes octopress.js

* 🔥 Removes use of root_url var

* 🔥 Removes Octopress generator reference from feed

* 🔥 Removes delicious support

* 🔥 Removes support for Pinboard

* 🔥 Removes support for Disqus

* 🔥 Removes support for Google Plus

* ↩️ Migrate custom after_footer to default template

* ↩️ Migrate custom footer to default template

* ↩️ Migrate custom header to default template

* 🔥 Removes unused template files

* 🚀 Places time to read directly in post template

* 🚀 Removes unneeded capture from archive_post.html template

* 🔥 🚀 Removes unused, but heaving sorting call in component page

* 🚀 Merged javascripts into a single file

* 🔥 Removes more uses of root_url

* 🚀 Removal of unneeded captures from head

* 🔥 🚀 Removal of expensive liquid HTML compressor

* 🔥 Removes unneeded templates

* 🚀 Replaces kramdown with GitHub's CommonMark 🚀

* 💄 Adds Prism code syntax highlighting

*  Adds support for redirect in Netlify

* ↩️ 🔥 Let Netlify handle all developer doc redirects

* ✏️ Fixes typo in redirects file: Netify -> Netlify

* 🔥 Removes unused .themes folder

* 🔥 Removes unused aside.html template

* 🔥 Removes Disqus config leftover

* 🔥 Removes rouge highlighter config

* 🔥 Removes Octopress 🎉

* 💄 Adjust code block font size and adds soft wraps

* 💄 Adds styling for inline code blocks

* 💄 Improve styling of note/warning/info boxes + div support

* 🔨 Rewrites all note/warning/info boxes
2019-07-15 22:17:54 +02:00

3.1 KiB

title, description, logo, ha_category, ha_release, ha_iot_class, redirect_from
title description logo ha_category ha_release ha_iot_class redirect_from
ROVA Sensor Instructions on how to integrate ROVA sensor within Home Assistant. rova.jpg
Sensor
0.87 Cloud Polling
/components/sensor.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 %} zip_code: description: Your zip code. required: true type: string house_number: description: Your house number. required: true type: string house_number_suffix: description: A suffix for your house number. required: false type: string name: description: Let you overwrite the name of the device in the frontend. required: false default: Rova type: string monitored_conditions: description: ROVA information to be monitored. The following collection dates can be monitored. required: false type: list keys: bio: description: Upcoming collection date of your biodegradable waste paper: description: Upcoming collection date of your paper waste plastic: description: upcoming collection date of your plastic waste residual: description: Upcoming collection date of your general waste {% endconfiguration %}

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.

{% raw %}

# Example configuration.yaml entry for Rova waste collection reminder
automation:
  - id: rova-garbage-bio-reminder
    alias: 'Send Rova Bio waste collection reminder'
    hide_entity: true
    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'

{% endraw %}

This integration is not affiliated with Rova and retrieves data from the endpoints of their website. Use at your own risk.