Skip to content

Commit cef1681

Browse files
jawilsonballoob
authored andcommitted
Insteon local fan (home-assistant#2390)
* Add fan to insteon_local full config * Add insteon_local fan page * Update 'ha_release'
1 parent 46e4f5a commit cef1681

File tree

2 files changed

+37
-0
lines changed

2 files changed

+37
-0
lines changed
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
---
2+
layout: page
3+
title: "Insteon (Local) Fan"
4+
description: "Instructions how to setup the Insteon Hub Fans locally within Home Assistant."
5+
date: 2017-04-06 11:00
6+
sidebar: true
7+
comments: false
8+
sharing: true
9+
footer: true
10+
logo: insteon.png
11+
ha_category: fan
12+
ha_version: 0.48
13+
---
14+
15+
The `insteon_local` fan component lets you control your fan connected to an [Insteon Hub](http://www.insteon.com/insteon-hub/) with Home Assistant.
16+
17+
To integrate add a fan, configure your hub Insteon(local) with Home Assistant, add the following section to your `configuration.yaml` file:
18+
19+
```yaml
20+
# Example configuration.yaml platform entry
21+
insteon_local:
22+
host: YOUR HUB IP
23+
username: YOUR HUB USERNAME
24+
password: YOUR HUB PASSWORD
25+
timeout: 10
26+
port: 25105
27+
```
28+
29+
To add fans to your set-up, add the platform to your light configuration:
30+
```yaml
31+
fan:
32+
- platform: insteon_local
33+
```
34+

source/_components/insteon_local.markdown

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,5 +50,8 @@ light:
5050
5151
switch:
5252
- platform: insteon_local
53+
54+
fan:
55+
- platform: insteon_local
5356
```
5457

0 commit comments

Comments
 (0)