From 3c0e0545d7ce757d347d002c099bfb5e8547e223 Mon Sep 17 00:00:00 2001 From: Josh Cooper Date: Mon, 29 Oct 2018 13:56:38 +0000 Subject: [PATCH] Added multiple lights to TP-Link lights (#7205) * Added multiple lights to TP-Link lights Added the multiple lights text same as TP-Link switches. * fixed to be light instead of switch thanks rohankapoorcom * :pencil2: Move example below the configuration options --- source/_components/light.tplink.markdown | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/source/_components/light.tplink.markdown b/source/_components/light.tplink.markdown index 158504bcae0..c17d111832c 100644 --- a/source/_components/light.tplink.markdown +++ b/source/_components/light.tplink.markdown @@ -13,7 +13,6 @@ ha_iot_class: "Local Polling" ha_release: "0.50" --- - 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: @@ -44,3 +43,15 @@ host: type: string {% endconfiguration %} +## {% linkable_title Adding multiple lights %} + +You may need to add [multiple lights](https://community.home-assistant.io/t/multiple-tp-link-switches/6935) and the config would need to include multiple lights separately. + +```yaml +# Example configuration.yaml entry +light: + - platform: tplink + host: FIRST_IP_ADDRESS + - platform: tplink + host: SECOND_IP_ADDRESS +```