Document default names for TP-Link devces (#4294)

- Document default names for smart sockets and bulbs
- Change all references to the company to "TP-Link"
This commit is contained in:
Dan Nixon 2017-12-28 20:23:16 +00:00 committed by Fabian Affolter
parent 2ecb5c44fb
commit 57855e2165
2 changed files with 20 additions and 16 deletions

View File

@ -1,7 +1,7 @@
--- ---
layout: page layout: page
title: "TPLink Bulb" title: "TP-Link Bulb"
description: "Instructions how to integrate TPLink bulbs into Home Assistant." description: "Instructions how to integrate TP-Link bulbs into Home Assistant."
date: 2017-07-25 08:00 date: 2017-07-25 08:00
sidebar: true sidebar: true
comments: false comments: false
@ -14,7 +14,7 @@ ha_release: "0.50"
--- ---
The `tplink` light platform allows you to control the state of your [TPLink smart bulb](http://www.tp-link.com/en/products/list-5609.html). The `tplink` light platform allows you to control the state of your [TP-Link smart bulb](http://www.tp-link.com/en/products/list-5609.html).
Supported units: Supported units:
@ -23,7 +23,7 @@ Supported units:
- LB120 - LB120
- LB130 - LB130
To use your TPLink light in your installation, add the following to your `configuration.yaml` file: To use your TP-Link light in your installation, add the following to your `configuration.yaml` file:
```yaml ```yaml
# Example configuration.yaml entry # Example configuration.yaml entry
@ -32,9 +32,15 @@ light:
host: IP_ADDRESS host: IP_ADDRESS
``` ```
Configuration variables: {% configuration %}
name:
- **host** (*Required*): The IP address of your TP-Link bulb, eg. `192.168.1.32`. description: The name to use when displaying this bulb.
- **name** (*Optional*): The name to use when displaying this bulb. required: false
type: string
default: TP-Link Light
host:
description: "The IP address of your TP-Link bulb, eg. `192.168.1.32`."
required: true
type: string
{% endconfiguration %}

View File

@ -1,7 +1,7 @@
--- ---
layout: page layout: page
title: "TPLink Switch" title: "TP-Link Switch"
description: "Instructions how to integrate TPLink switches into Home Assistant." description: "Instructions how to integrate TP-Link switches into Home Assistant."
date: 2016-07-13 08:00 date: 2016-07-13 08:00
sidebar: true sidebar: true
comments: false comments: false
@ -14,7 +14,7 @@ ha_release: "0.24"
--- ---
The `tplink` switch platform allows you to control the state of your [TPLink smart switch](http://www.tp-link.com/en/products/list-5258.html). The `tplink` switch platform allows you to control the state of your [TP-Link smart switch](http://www.tp-link.com/en/products/list-5258.html).
Supported units: Supported units:
@ -23,7 +23,7 @@ Supported units:
- HS110 - HS110
- HS200 - HS200
To use your TPLink switch in your installation, add the following to your `configuration.yaml` file: To use your TP-Link switch in your installation, add the following to your `configuration.yaml` file:
```yaml ```yaml
# Example configuration.yaml entry # Example configuration.yaml entry
@ -37,7 +37,7 @@ name:
description: The name to use when displaying this switch. description: The name to use when displaying this switch.
required: false required: false
type: string type: string
default: Random Sensor default: TP-Link Switch
host: host:
description: "The IP address of your TP-Link switch, eg. `192.168.1.32`." description: "The IP address of your TP-Link switch, eg. `192.168.1.32`."
required: true required: true
@ -49,5 +49,3 @@ enable_leds:
default: true default: true
{% endconfiguration %} {% endconfiguration %}