mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-07-14 12:56:54 +00:00
Add documentation for splitting up the dovado sensor (#8296)
This commit is contained in:
parent
392ff9472b
commit
4e81183333
46
source/_components/dovado.markdown
Normal file
46
source/_components/dovado.markdown
Normal file
@ -0,0 +1,46 @@
|
|||||||
|
---
|
||||||
|
layout: page
|
||||||
|
title: "Dovado"
|
||||||
|
description: "How to integrate Dovado 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` 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.
|
||||||
|
|
||||||
|
To add a Dovado component to your installation, add the following to your `configuration.yaml` file:
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
# 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 %}
|
46
source/_components/notify.dovado.markdown
Normal file
46
source/_components/notify.dovado.markdown
Normal file
@ -0,0 +1,46 @@
|
|||||||
|
---
|
||||||
|
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,6 +1,6 @@
|
|||||||
---
|
---
|
||||||
layout: page
|
layout: page
|
||||||
title: "Dovado"
|
title: "Dovado Sensor"
|
||||||
description: "How to integrate Dovado sensors within Home Assistant."
|
description: "How to integrate Dovado sensors within Home Assistant."
|
||||||
date: 2016-11-05 08:00
|
date: 2016-11-05 08:00
|
||||||
sidebar: true
|
sidebar: true
|
||||||
@ -13,7 +13,7 @@ ha_release: 0.32
|
|||||||
ha_iot_class: "Local Polling"
|
ha_iot_class: "Local Polling"
|
||||||
---
|
---
|
||||||
|
|
||||||
The `dovado` platform let you monitor your router from [Dovado](http://www.dovado.com/). If the router provides SMS functionality, a service for sending SMS will also be registered in Home Assistant.
|
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:
|
To add a Dovado sensor to your installation, add the following to your `configuration.yaml` file:
|
||||||
|
|
||||||
@ -21,31 +21,11 @@ To add a Dovado sensor to your installation, add the following to your `configur
|
|||||||
# Example configuration.yaml entry
|
# Example configuration.yaml entry
|
||||||
sensor:
|
sensor:
|
||||||
- platform: dovado
|
- platform: dovado
|
||||||
username: YOUR_USERNAME
|
|
||||||
password: YOUR_PASSWORD
|
|
||||||
sensors:
|
sensors:
|
||||||
- network
|
- network
|
||||||
```
|
```
|
||||||
|
|
||||||
{% configuration %}
|
{% 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
|
|
||||||
sensors:
|
sensors:
|
||||||
description: Conditions to display in the frontend. Only accepts the values listed here.
|
description: Conditions to display in the frontend. Only accepts the values listed here.
|
||||||
required: true
|
required: true
|
||||||
|
Loading…
x
Reference in New Issue
Block a user