From dd1fa2434f391456edd1a5a1df471f5706d743c6 Mon Sep 17 00:00:00 2001 From: Dries De Peuter Date: Sun, 8 Apr 2018 13:06:01 +0200 Subject: [PATCH 1/2] Add niko-home-control documentation --- .../light.niko_home_control.markdown | 26 +++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 source/_components/light.niko_home_control.markdown diff --git a/source/_components/light.niko_home_control.markdown b/source/_components/light.niko_home_control.markdown new file mode 100644 index 000000000000..4cb2d0e5c18c --- /dev/null +++ b/source/_components/light.niko_home_control.markdown @@ -0,0 +1,26 @@ +--- +layout: page +title: "Niko Home Control" +description: "Instructions on how to integrate Niko Home Control into Home Assistant." +date: 2018-04-08 08:00 +sidebar: true +comments: false +sharing: true +footer: true +ha_category: Light +ha_iot_class: "Local Polling" +ha_release: 0.36 +--- + +The `niko_home_control` platform allows you to integrate your [Niko Home Control](https://www.niko.eu/enus/products/niko-home-control) into Home Assistant. + +```yaml +# Example configuration.yaml entry +light: + - platform: niko_home_control + host: 192.168.1.123 +``` + +Configuration variables: + + - **host** (*Required*): The ip address your Niko Home is on, From 0948b9a9079f19d638d18ab72a44e17dc1ccb144 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Mon, 12 Nov 2018 11:49:34 +0100 Subject: [PATCH 2/2] Updates --- .../light.niko_home_control.markdown | 21 ++++++++++++------- 1 file changed, 14 insertions(+), 7 deletions(-) diff --git a/source/_components/light.niko_home_control.markdown b/source/_components/light.niko_home_control.markdown index 4cb2d0e5c18c..6a513b90ac03 100644 --- a/source/_components/light.niko_home_control.markdown +++ b/source/_components/light.niko_home_control.markdown @@ -1,7 +1,7 @@ --- layout: page -title: "Niko Home Control" -description: "Instructions on how to integrate Niko Home Control into Home Assistant." +title: "Niko Home Control Light" +description: "Instructions on how to integrate Niko Home Control lights into Home Assistant." date: 2018-04-08 08:00 sidebar: true comments: false @@ -9,18 +9,25 @@ sharing: true footer: true ha_category: Light ha_iot_class: "Local Polling" -ha_release: 0.36 +ha_release: 0.82 --- The `niko_home_control` platform allows you to integrate your [Niko Home Control](https://www.niko.eu/enus/products/niko-home-control) into Home Assistant. +## {% linkable_title Configuration %} + +To enable this lights, add the following lines to your `configuration.yaml`: + ```yaml # Example configuration.yaml entry light: - platform: niko_home_control - host: 192.168.1.123 + host: IP_ADDRESS ``` -Configuration variables: - - - **host** (*Required*): The ip address your Niko Home is on, +{% configuration %} +host: + description: The IP address of the Niko Home light. + required: false + type: string +{% endconfiguration %}