mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-06-01 15:56:49 +00:00
35 lines
894 B
Markdown
35 lines
894 B
Markdown
---
|
|
layout: page
|
|
title: "Insteon (Local) Light"
|
|
description: "Instructions how to setup the Insteon Hub Lights locally within Home Assistant."
|
|
date: 2016-12-18 08:00
|
|
sidebar: true
|
|
comments: false
|
|
sharing: true
|
|
footer: true
|
|
logo: insteon.png
|
|
ha_category: Light
|
|
ha_version: 0.36
|
|
---
|
|
|
|
The `insteon_local` light component lets you control your lights connected to an [Insteon Hub](http://www.insteon.com/insteon-hub/) with Home Assistant.
|
|
|
|
To integrate add a light, configure your hub Insteon(local) with Home Assistant, add the following section to your `configuration.yaml` file:
|
|
|
|
```yaml
|
|
# Example configuration.yaml platform entry
|
|
insteon_local:
|
|
host: YOUR HUB IP
|
|
username: YOUR HUB USERNAME
|
|
password: YOUR HUB PASSWORD
|
|
timeout: 10
|
|
port: 25105
|
|
```
|
|
|
|
To add lights (dimmers) to your set-up, add the platform to your light configuration:
|
|
```yaml
|
|
light:
|
|
- platform: insteon_local
|
|
```
|
|
|