Update hunterdouglas_powerview for config flow (#13195)

This commit is contained in:
J. Nick Koston 2020-05-01 09:22:43 -05:00 committed by GitHub
parent 5e51889d04
commit a3afc88a64
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,24 +2,44 @@
title: Hunter Douglas PowerView title: Hunter Douglas PowerView
description: Instructions on how to setup Hunter Douglas PowerView scenes within Home Assistant. description: Instructions on how to setup Hunter Douglas PowerView scenes within Home Assistant.
ha_category: ha_category:
- Cover
- Scene - Scene
- Sensor
ha_release: 0.15 ha_release: 0.15
ha_domain: hunterdouglas_powerview ha_domain: hunterdouglas_powerview
ha_iot_class: Local Polling
ha_config_flow: true
ha_codeowners:
- '@bdraco'
--- ---
Implements the [Hunter Douglas PowerView](https://www.hunterdouglas.com/operating-systems/powerview-motorization/support) platform scene control. It queries the PowerView Hub and Home Assistant displays them as scenes. The `hunterdouglas_powerview` integration allows you to integrate your [Hunter Douglas PowerView](https://www.hunterdouglas.com/operating-systems/powerview-motorization/support) devices in Home Assistant.
Scenes can be activated using the service `scene.turn_on`. There is currently support for the following device types within Home Assistant:
- Cover
- Scene
- Sensor
To add `Hunter Douglas PowerView` to your installation, go to **Configuration** >> **Integrations** in the UI, click the button with `+` sign and from the list of integrations select **Hunter Douglas PowerView**.
Alternatively, add the following to your `configuration.yaml` file:
```yaml ```yaml
# Example configuration.yaml entry # Example configuration.yaml entry
scene: hunterdouglas_powerview:
platform: hunterdouglas_powerview - host: IP_ADDRESS
address: IP_ADDRESS ```
```yaml
# Example configuration.yaml with multiple hubs
hunterdouglas_powerview:
- host: IP_ADDRESS
- host: IP_ADDRESS_2
``` ```
{% configuration %} {% configuration %}
address: host:
description: IP address of the PowerView Hub, e.g., 192.168.1.10. description: IP address of the PowerView Hub, e.g., 192.168.1.10.
required: true required: true
type: string type: string