Skip to content

Commit f3b57f7

Browse files
bimbarLandrash
authored andcommitted
Documentation for kwb component (home-assistant#2209)
* Create sensor.kwb.markdown * Layout changes * Added variable documentation Also, here's a nice KWB logo: http://www.schneider-haustechnik.at/images/logo_kwb.png * Update sensor.kwb.markdown Changed ordering and fixed some formatting. * Update sensor.kwb.markdown Spelling
1 parent 8aa3cd8 commit f3b57f7

File tree

1 file changed

+59
-0
lines changed

1 file changed

+59
-0
lines changed
Lines changed: 59 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
---
2+
layout: page
3+
title: "KWB Easyfire Sensor"
4+
description: "Instructions how to integrate the KWB Easyfire sensor into Home Assistant."
5+
date: 2017-03-06 14:10
6+
sidebar: true
7+
comments: false
8+
sharing: true
9+
footer: true
10+
logo: home-assistant.png
11+
ha_category: Sensor
12+
ha_iot_class: "Local Polling"
13+
ha_release: 0.40
14+
---
15+
16+
The `kwb` component integrates the sensors of KWB Easyfire pellet central heating units with the Comfort3 controller (http://www.kwbheizung.de/de/produkte/kwb-comfort-3.html) into Home Assistant.
17+
18+
Direct connection via serial (RS485) or via telnet terminal server is supported. The serial cable has to be attached to the control unit port 25 (which is normally used for detached control terminals).
19+
20+
Since this serial protocol is proprietary and closed, only most temperature sensors and a few control relays are supported, the rest is still WIP (see https://www.mikrocontroller.net/topic/274137).
21+
22+
Direct connection via serial port:
23+
```yaml
24+
# Example configuration.yaml entry
25+
- platform: kwb
26+
name: kwb
27+
device: "/dev/ttyUSB0"
28+
type: serial
29+
raw: False
30+
```
31+
32+
Telnet terminal server with a serial-ethernet converter:
33+
```yaml
34+
# Example configuration.yaml entry
35+
- platform: kwb
36+
name: kwb
37+
host: <ip>
38+
port: 23
39+
type: tcp
40+
raw: False
41+
```
42+
43+
Configuration variables:
44+
45+
*Required if used with a serial-ethernet converter*
46+
47+
- **host**: The IP-address of the serial server
48+
- **port**: The TCP-port of the serial server
49+
- **type**: tcp
50+
51+
*Required if used directly with a serial port*
52+
53+
- **device**: The serial device of the machine
54+
- **type**: serial
55+
56+
*Optional for both cases*
57+
58+
- **name**: The name of the device used in the frontend
59+
- **raw**: Should the raw serial output be shown as a sensor

0 commit comments

Comments
 (0)