diff --git a/source/_components/sensor.velbus.markdown b/source/_components/sensor.velbus.markdown index 7ec537b6e57..56233e50c8a 100644 --- a/source/_components/sensor.velbus.markdown +++ b/source/_components/sensor.velbus.markdown @@ -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/). diff --git a/source/_components/velbus.markdown b/source/_components/velbus.markdown index 329258ee28a..c5cb790ee99 100644 --- a/source/_components/velbus.markdown +++ b/source/_components/velbus.markdown @@ -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 %}