Update on velbus docu (#6307)

This commit is contained in:
Maikel Punie 2018-09-18 12:20:01 +02:00 committed by Fabian Affolter
parent 2493f6970e
commit 53f3f12d5a
2 changed files with 10 additions and 4 deletions

View File

@ -13,6 +13,6 @@ ha_iot_class: "Local Push"
ha_release: 0.78
---
The `velbus` sensor allows you to control [Velbus](http://www.velbus.eu) connected temperature sensors.
The `velbus` sensor allows you to control [Velbus](http://www.velbus.eu) connected sensors.
For hub configuration, see [the Velbus component](/components/velbus/).

View File

@ -13,21 +13,27 @@ ha_iot_class: "Local Push"
ha_release: "0.50"
---
The `velbus` component supports the Velbus USB and serial gateways.
The `velbus` component supports the Velbus USB, Velbus serial and a TCP/IP gateway.
## {% linkable_title Configuration %}
The gateway needs to be configured by adding the following lines to your `configuration.yaml` file:
```yaml
# Example configuration.yaml entry
# Example configuration.yaml entry for a USB or serial interface
velbus:
port: '/dev/ttyUSB00'
```
```yaml
# Example configuration.yaml entry for a TCP/IP interface
velbus:
port: '127.0.0.1:3678'
```
{% configuration %}
port:
description: The port where your board is connected to your Home Assistant host. The port will be most likely named `ttyUSB*`.
description: The port where your board is connected to your Home Assistant host.
required: true
type: string
{% endconfiguration %}