mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-07-24 17:57:14 +00:00
🚜 Merges/Redirect Dovado component pages (#8543)
This commit is contained in:
parent
4bbbd01095
commit
485d0a777b
@ -7,13 +7,24 @@ sidebar: true
|
|||||||
comments: false
|
comments: false
|
||||||
sharing: true
|
sharing: true
|
||||||
footer: true
|
footer: true
|
||||||
ha_category: System Monitor
|
ha_category:
|
||||||
|
- System Monitor
|
||||||
|
- Notifications
|
||||||
|
- Sensor
|
||||||
logo: dovado.png
|
logo: dovado.png
|
||||||
ha_release: 0.87
|
ha_release: 0.87
|
||||||
ha_iot_class: "Local Polling"
|
ha_iot_class: "Local Polling"
|
||||||
|
redirect_from:
|
||||||
|
- /components/notify.dovado/
|
||||||
|
- /components/sensor.dovado/
|
||||||
---
|
---
|
||||||
|
|
||||||
The `dovado` component manages communication with the [Dovado](http://www.dovado.com/) router. Once you've setup this component, you should enable the [sensor](/components/sensor.dovado) and [notify](/components/notity.dovado) platforms to use Dovado.
|
The `dovado` component manages communication with the [Dovado](http://www.dovado.com/) router.
|
||||||
|
|
||||||
|
There is currently support for the following device types within Home Assistant:
|
||||||
|
|
||||||
|
- [Notifications](/components/dovado/#notifications)
|
||||||
|
- [Sensor](/components/dovado/#sensor)
|
||||||
|
|
||||||
To add a Dovado component to your installation, add the following to your `configuration.yaml` file:
|
To add a Dovado component to your installation, add the following to your `configuration.yaml` file:
|
||||||
|
|
||||||
@ -44,3 +55,65 @@ port:
|
|||||||
type: integer
|
type: integer
|
||||||
default: 6435
|
default: 6435
|
||||||
{% endconfiguration %}
|
{% endconfiguration %}
|
||||||
|
|
||||||
|
## {% linkable_title Notifications %}
|
||||||
|
|
||||||
|
The `dovado` notify platform allows you to send SMS from your [Dovado](http://www.dovado.com/) router, if it supports it.
|
||||||
|
|
||||||
|
To add the Dovado notify platform to your installation, add the following to your `configuration.yaml` file:
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
# Example configuration.yaml entry
|
||||||
|
notify:
|
||||||
|
- platform: dovado
|
||||||
|
```
|
||||||
|
|
||||||
|
### {% linkable_title Usage %}
|
||||||
|
|
||||||
|
This is a notify platform and thus can be controlled by calling the notify service [as described here](/components/notify/). It will send an SMS notification to a single phone number in the notification **target**.
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
# 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'
|
||||||
|
```
|
||||||
|
|
||||||
|
## {% linkable_title Sensor %}
|
||||||
|
|
||||||
|
The `dovado` sensor platform let you monitor your [Dovado](http://www.dovado.com/) router.
|
||||||
|
|
||||||
|
To add a Dovado sensor to your installation, add the following to your `configuration.yaml` file:
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
# 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 %}
|
@ -1,46 +0,0 @@
|
|||||||
---
|
|
||||||
layout: page
|
|
||||||
title: "Dovado SMS"
|
|
||||||
description: "How to integrate Dovado SMS notifications within Home Assistant."
|
|
||||||
date: 2019-01-26 15:45
|
|
||||||
sidebar: true
|
|
||||||
comments: false
|
|
||||||
sharing: true
|
|
||||||
footer: true
|
|
||||||
ha_category: System Monitor
|
|
||||||
logo: dovado.png
|
|
||||||
ha_release: 0.87
|
|
||||||
ha_iot_class: "Local Polling"
|
|
||||||
---
|
|
||||||
|
|
||||||
The `dovado` notify platform allows you to send SMS from your [Dovado](http://www.dovado.com/) router, if it supports it.
|
|
||||||
|
|
||||||
<p class='note'>
|
|
||||||
You must have the [Dovado component](/components/dovado/) configured to use this notify platform.
|
|
||||||
</p>
|
|
||||||
|
|
||||||
To add the Dovado notify platform to your installation, add the following to your `configuration.yaml` file:
|
|
||||||
|
|
||||||
```yaml
|
|
||||||
# Example configuration.yaml entry
|
|
||||||
notify:
|
|
||||||
- platform: dovado
|
|
||||||
```
|
|
||||||
|
|
||||||
### {% linkable_title Usage %}
|
|
||||||
|
|
||||||
This is a notify platform and thus can be controlled by calling the notify service [as described here](/components/notify/). It will send an SMS notification to a single phone number in the notification **target**.
|
|
||||||
|
|
||||||
```yaml
|
|
||||||
# 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'
|
|
||||||
```
|
|
@ -1,44 +0,0 @@
|
|||||||
---
|
|
||||||
layout: page
|
|
||||||
title: "Dovado Sensor"
|
|
||||||
description: "How to integrate Dovado sensors within Home Assistant."
|
|
||||||
date: 2016-11-05 08:00
|
|
||||||
sidebar: true
|
|
||||||
comments: false
|
|
||||||
sharing: true
|
|
||||||
footer: true
|
|
||||||
ha_category: System Monitor
|
|
||||||
logo: dovado.png
|
|
||||||
ha_release: 0.32
|
|
||||||
ha_iot_class: "Local Polling"
|
|
||||||
---
|
|
||||||
|
|
||||||
The `dovado` sensor platform let you monitor your [Dovado](http://www.dovado.com/) router.
|
|
||||||
|
|
||||||
To add a Dovado sensor to your installation, add the following to your `configuration.yaml` file:
|
|
||||||
|
|
||||||
```yaml
|
|
||||||
# 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 %}
|
|
Loading…
x
Reference in New Issue
Block a user