826ef4abb4
* Rename collection folders Signed-off-by: Thomas Dietrich <Thomas.Dietrich@tu-ilmenau.de> * Change all occurences of addons and repos Signed-off-by: Thomas Dietrich <Thomas.Dietrich@tu-ilmenau.de> * Add further corrections Signed-off-by: Thomas Dietrich <Thomas.Dietrich@tu-ilmenau.de> * Remove temporary directories after processing Signed-off-by: Thomas Dietrich <Thomas.Dietrich@tu-ilmenau.de> * Reduce addons menus, show current uncond. Signed-off-by: Thomas Dietrich <Thomas.Dietrich@tu-ilmenau.de> * Fix typo Signed-off-by: Thomas Dietrich <Thomas.Dietrich@tu-ilmenau.de> * Remove redundant addons from permalinks Signed-off-by: Thomas Dietrich <Thomas.Dietrich@tu-ilmenau.de> * Sort UI menu entries correctly Signed-off-by: Thomas Dietrich <Thomas.Dietrich@tu-ilmenau.de> * Split maven command Signed-off-by: Thomas Dietrich <Thomas.Dietrich@tu-ilmenau.de> |
||
---|---|---|
.. | ||
readme.md |
readme.md
id | label | title | type | description | source | since | logo | install |
---|---|---|---|---|---|---|---|---|
homematic | Homematic | Homematic - Actions | action | The Homematic action lets you send messages to a Homematic remote control with a display, currently the HM-RC-19-B (Radio remote control 19 button). | https://github.com/openhab/openhab1-addons/blob/master/bundles/action/org.openhab.action.homematic/README.md | 1x | images/addons/homematic.png | manual |
{% include base.html %}
Homematic Action
The Homematic action lets you send messages to a Homematic remote control with a display, currently the HM-RC-19-B (Radio remote control 19 button).
Prerequisites
The Homematic Binding (1.x) must be installed and configured.
Actions
sendHomematicDisplay(REMOTE_CONTROL_ADDRESS, TEXT)
sendHomematicDisplay(REMOTE_CONTROL_ADDRESS, TEXT, OPTIONS)
The remote control display is limited to five characters; a longer text is truncated.
You have several additional options to control the display.
BEEP
(TONE1, TONE2, TONE3) - let the remote control beepBACKLIGHT
(BACKLIGHT_ON, BLINK_SLOW, BLINK_FAST) - control the display backlightUNIT
(PERCENT, WATT, CELSIUS, FAHRENHEIT) - display one of these unitsSYMBOL
(BULB, SWITCH, WINDOW, DOOR, BLIND, SCENE, PHONE, BELL, CLOCK, ARROW_UP, ARROW_DOWN) - display symbols, multiple symbols possible
You can combine any option, they must be separated by a comma. If you specify more than one option for BEEP, BACKLIGHT and UNIT, only the first one is taken into account and all others are ignored. For SYMBOL you can specify multiple options.
Examples
Show message TEST:
sendHomematicDisplay("KEQ0012345", "TEST");
Show message TEXT, beep once and turn backlight on:
sendHomematicDisplay("KEQ0012345", "TEXT", "TONE1, BACKLIGHT_ON");
Show message 15, beep once, turn backlight on and shows the Celsius unit:
sendHomematicDisplay("KEQ0012345", "15", "TONE1, BACKLIGHT_ON, CELSIUS");
Show message ALARM, beep three times, let the backlight blink fast and shows a bell symbol:
sendHomematicDisplay("KEQ0012345", "ALARM", "TONE3, BLINK_FAST, BELL");
Duplicate options (TONE3 is ignored, because TONE1 is specified previously):
sendHomematicDisplay("KEQ0012345", "TEXT", "TONE1, BLINK_FAST, TONE3");