update tplink docs for python-kasa rework (#19483)

* update tplink docs for python-kasa rework

* include conrifg_flow.md
This commit is contained in:
Teemu R 2021-09-27 21:15:44 +02:00 committed by GitHub
parent 82d96a0ed6
commit 67396a5575
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -28,8 +28,7 @@ There is currently support for the following device types within Home Assistant:
- **Switch** - **Switch**
- **Sensor** - **Sensor**
In order to activate the support, you will have to enable the integration inside the configuration panel. {% include integrations/config_flow.md %}
The supported devices in your network are automatically discovered, but if you want to control devices residing in other networks you will need to configure them manually as shown below.
## Supported Devices ## Supported Devices
@ -38,19 +37,17 @@ The following devices are known to work with this component.
### Plugs ### Plugs
Plugs are type `switch` when autodiscovery has been disabled.
- HS100 - HS100
- HS103 - HS103
- HS105 - HS105
- HS110 (confirmed to support consumption sensors) - HS110 (supports consumption sensors)
- KP105 - KP105
- KP115 (confirmed to support consumption sensors) - KP115 (supports consumption sensors)
### Strip (Multi-Plug) ### Strip (Multi-Plug)
- HS107 (indoor 2-outlet) - HS107 (indoor 2-outlet)
- HS300 (powerstrip 6-outlet) (confirmed to support consumption sensors) - HS300 (powerstrip 6-outlet) (supports consumption sensors)
- KP303 (powerstrip 3-outlet) - KP303 (powerstrip 3-outlet)
- KP400 (outdoor 2-outlet) - KP400 (outdoor 2-outlet)
- KP200 (indoor 2-outlet) - KP200 (indoor 2-outlet)
@ -65,8 +62,6 @@ Plugs are type `switch` when autodiscovery has been disabled.
### Bulbs ### Bulbs
Other bulbs may also work, but with limited color temperatures. If you find a bulb isn't reaching the full-color temperature boundaries, submit a bug report. Bulbs do generally report some energy consumption information, see the entity state attributes to find out what information is available.
- LB100 - LB100
- LB110 - LB110
- LB120 - LB120
@ -78,73 +73,4 @@ Other bulbs may also work, but with limited color temperatures. If you find a bu
- KL130 - KL130
- KB130 - KB130
## Configuration Other bulbs may also work, but with limited color temperature range (2700-5000). If you find a bulb isn't reaching the full-color temperature boundaries, submit a bug report to [python-kasa](https://github.com/python-kasa/python-kasa).
```yaml
# Example configuration.yaml
tplink:
```
{% configuration %}
discovery:
description: Whether to do automatic discovery of devices.
required: false
type: boolean
default: true
light:
description: List of light devices.
required: false
type: list
keys:
host:
description: Hostname or IP address of the device.
required: true
type: string
strip:
description: List of multi-outlet on/off switch devices.
required: false
type: list
keys:
host:
description: Hostname or IP address of the device.
required: true
type: string
switch:
description: List of on/off switch devices.
required: false
type: list
keys:
host:
description: Hostname or IP address of the device.
required: true
type: string
dimmer:
description: List of dimmable switch devices.
required: false
type: list
keys:
host:
description: Hostname or IP address of the device.
required: true
type: string
{% endconfiguration %}
## Manual configuration example
```yaml
# Example configuration.yaml entry with manually specified addresses
tplink:
discovery: false
light:
- host: 192.168.200.1
- host: 192.168.200.2
switch:
- host: 192.168.200.3
- host: 192.168.200.4
dimmer:
- host: 192.168.200.5
- host: 192.168.200.6
strip:
- host: 192.168.200.7
- host: 192.168.200.8
```