From f5dbb8378150c20df8b64e7d7c29c1774ae6924a Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sat, 14 Jan 2017 16:45:52 +0100 Subject: [PATCH] Minor changes --- source/_components/insteon_local.markdown | 30 +++++++++++------------ 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/source/_components/insteon_local.markdown b/source/_components/insteon_local.markdown index 7a6b1fcb251..10172c55460 100644 --- a/source/_components/insteon_local.markdown +++ b/source/_components/insteon_local.markdown @@ -1,6 +1,6 @@ --- layout: page -title: "Insteon(local)" +title: "Insteon (local)" description: "Instructions how to setup the Insteon Hub locally within Home Assistant." date: 2016-12-18 08:00 sidebar: true @@ -13,9 +13,9 @@ ha_iot_class: "Local Polling" ha_version: 0.36 --- -The `insteon-local` component lets you use your [Insteon Hub](http://www.insteon.com/insteon-hub/) with Home Assistant. +The `insteon_local` component let you use your [Insteon Hub](http://www.insteon.com/insteon-hub/) with Home Assistant. -To integrate your Insteon(local) with Home Assistant, add the following section to your `configuration.yaml` file: +To integrate your Insteon local setup with Home Assistant, add the following section to your `configuration.yaml` file: ```yaml # Example configuration.yaml platform entry @@ -23,14 +23,21 @@ insteon_local: host: YOUR HUB IP username: YOUR HUB USERNAME password: YOUR HUB PASSWORD - timeout: 10 - port: 25105 ``` -The Insteon(local) component currently supports both lights(dimmers) and switches. A full configuration may look like so: +Configuration variables: + +- **host** (*Required*): The IP address of your hub. +- **username** (*Required*): The username used to access the Insteon interface (find in your Insteon app). +- **password** (*Required*): The password used to access the Insteon interface. +- **timeout** (*Optional*): Timeout to wait for connections. Defaults to 10 seconds. +- **port** (*Optional*): The port your hub is configured to listen to. Defaults to `25105`. + +### {% linkable_title Full configuration %} + +The `insteon_local` component currently supports both lights (dimmers) and switches. A full configuration may look like so: ```yaml -# Example configuration.yaml platform entry insteon_local: host: YOUR HUB IP username: YOUR HUB USERNAME @@ -42,13 +49,6 @@ light: - platform: insteon_local switch: - - platform: insteon_local + - platform: insteon_local ``` -Configuration variables: - -- **username** (*Required*): The username used to access the Insteon interface (find in your Insteon app). -- **password** (*Required*): The password used to access the Insteon interface. -- **host** (*Required*): The ip address of your hub. -- **timeout** (*Optional*): Timeout to wait for connection. (default: 10) -- **port** (*Optional*): The port your hub is configured to listen to. (default: 25105) \ No newline at end of file