From 9c7e5ad9e9383e1f813edd7294d64522fa5978fa Mon Sep 17 00:00:00 2001 From: brefra Date: Sun, 26 Jan 2020 20:33:13 +0100 Subject: [PATCH 1/3] Add service description --- source/_integrations/velbus.markdown | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/source/_integrations/velbus.markdown b/source/_integrations/velbus.markdown index 075ba2f47c96..50c9ceb26da6 100644 --- a/source/_integrations/velbus.markdown +++ b/source/_integrations/velbus.markdown @@ -54,6 +54,32 @@ port: type: string {% endconfiguration %} +### Service `velbus.sync_clock` + +You can use the service `velbus.sync clock` to synchronize the clock of the velbus modules to the clock of the machine running Home Assistant. This is the same as the 'sync clock' button at the VelbusLink software. + +### Service `velbus.set_memo_text` + +You can use the service `velbus.set_memo_text` to provide the memo text to be displayed at Velbus modules like VMBGPO(D) and VMBELO. + +| Service data attribute | Optional | Description | +| ---------------------- | -------- | ---------------------------------------- | +| `address` | no | The module address in decimal format, which is displayed at the device list at the integration page. | +| `memo_text` | yes | Text to be displayed on module. When no memo text is supplied the memo text will be cleared. | + +Example: + +```yaml +script: + trash_memo: + alias: Trash memo text + sequence: + - data: + address: 65 + memo_text: "It's trash day" + service: velbus.set_memo_text +``` + ## Example automation The Velbus integration allows you to link a Velbus button (i.e., a button of a [VMBGPOD](https://www.velbus.eu/products/view/?id=416302&lang=en) module) to a controllable entity of Home Assistant. From 1bab6b02ae6eb484cf803b06da5c5264ca125524 Mon Sep 17 00:00:00 2001 From: brefra Date: Tue, 28 Jan 2020 08:30:00 +0100 Subject: [PATCH 2/3] Change velbus to Velbus Co-Authored-By: Franck Nijhof --- source/_integrations/velbus.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/_integrations/velbus.markdown b/source/_integrations/velbus.markdown index 50c9ceb26da6..819e8cdcfaa3 100644 --- a/source/_integrations/velbus.markdown +++ b/source/_integrations/velbus.markdown @@ -56,7 +56,7 @@ port: ### Service `velbus.sync_clock` -You can use the service `velbus.sync clock` to synchronize the clock of the velbus modules to the clock of the machine running Home Assistant. This is the same as the 'sync clock' button at the VelbusLink software. +You can use the service `velbus.sync clock` to synchronize the clock of the Velbus modules to the clock of the machine running Home Assistant. This is the same as the 'sync clock' button at the VelbusLink software. ### Service `velbus.set_memo_text` From 05ca77ac28e3cee0d5d327297c3770edef815879 Mon Sep 17 00:00:00 2001 From: brefra Date: Tue, 28 Jan 2020 12:36:37 +0100 Subject: [PATCH 3/3] Add services heading --- source/_integrations/velbus.markdown | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/source/_integrations/velbus.markdown b/source/_integrations/velbus.markdown index 50c9ceb26da6..52563da8c522 100644 --- a/source/_integrations/velbus.markdown +++ b/source/_integrations/velbus.markdown @@ -54,6 +54,11 @@ port: type: string {% endconfiguration %} +## Services + +- `velbus.sync clock`: Synchronize Velbus time to local clock. +- `velbus.set_memo_text`: Show memo text on Velbus display modules. + ### Service `velbus.sync_clock` You can use the service `velbus.sync clock` to synchronize the clock of the velbus modules to the clock of the machine running Home Assistant. This is the same as the 'sync clock' button at the VelbusLink software.