Franck Nijhof ebca3218c7
🔥Removes linkable_title everywhere (#9772)
* Automatically create linkable headers

* Visually improve position of linkable header chain icon

* Do not auto link  headers on homepage

* Remove linkable_title everywhere

* 🚑 Re-instante linkable_title plugin as NOOP
2019-07-04 19:08:27 +02:00

2.9 KiB

layout, title, description, date, sidebar, comments, sharing, footer, ha_category, logo, ha_release, ha_iot_class, redirect_from
layout title description date sidebar comments sharing footer ha_category logo ha_release ha_iot_class redirect_from
page Dovado How to integrate Dovado within Home Assistant. 2019-01-26 15:45 true false true true
System Monitor
Notifications
Sensor
dovado.png 0.87 Local Polling
/components/notify.dovado/
/components/sensor.dovado/

The dovado integration manages communication with the Dovado router.

There is currently support for the following device types within Home Assistant:

To add a Dovado integration to your installation, add the following to your configuration.yaml file:

# Example configuration.yaml entry
dovado:
  username: YOUR_USERNAME
  password: YOUR_PASSWORD

{% configuration %} username: description: Your Dovado username. required: true type: string password: description: Your Dovado password. required: true type: string host: description: The IP address of your router. required: false type: string default: Home Assistant's default gateway port: description: The port number of your router. required: false type: integer default: 6435 {% endconfiguration %}

Notifications

The dovado notify platform allows you to send SMS from your Dovado router, if it supports it.

To add the Dovado notify platform to your installation, add the following to your configuration.yaml file:

# Example configuration.yaml entry
notify:
  - platform: dovado

Usage

This is a notify platform and thus can be controlled by calling the notify service as described here. It will send an SMS notification to a single phone number in the notification target.

# Example automation notification entry
automation:
  - alias: The sun has set
    trigger:
      platform: sun
      event: sunset
    action:
      service: notify.dovado
      data:
        message: 'The sun has set'
        target: '+14151234567'

Sensor

The dovado sensor platform let you monitor your Dovado router.

To add a Dovado sensor to your installation, add the following to your configuration.yaml file:

# Example configuration.yaml entry
sensor:
  - platform: dovado
    sensors:
      - network

{% configuration %} sensors: description: Conditions to display in the frontend. Only accepts the values listed here. required: true type: list keys: network: description: Creates a sensor for Network State (3G, 4G, etc.). signal: description: Creates a sensor for the signal strength. download: description: Creates a sensor for download speed. upload: description: Creates a sensor for download speed. sms: description: Creates a sensor for number of unread text messages. {% endconfiguration %}