Device-Widgets

device.blind device.codepad device.dimmer device.roofwindow device.rtr device.rtrslider device.shutter device.smallshut device.uzsugraph device.uzsuicon device.uzsutable device.window


device.rtrslider

Displays a round slider for RTR

Parameters
{{ device.rtrslider(id, item_actual, item_set, item_comfort, item_night, item_frost, item_state, min, max, step, scale, scale_interval, item_offset, supplements, tolerance) }}
id
unique id for this widget (mandatory)
item_actual
an item for the actual temperature
item_set
an item for the set temperature
item_comfort
an item for comfort / standby (3x bit or 1x byte, optional)
item_night
an item for night (3x bit or 1x byte, optional)
item_frost
an item for frost (3x bit or 1x byte, optional)
item_state
an item for the current state of the actuator (optional)
min
the minimum value if the slider is moved to total left (optional, default: 18)
max
the maximum value if the slider is moved to total right (optional, default: 28)
step
step between two values (optional, default: .1)
scale
display a scale with values along the slider (optional, default='true')
scale_interval
scale-integer, the scale-divider for the scale
item_offset
an item for the offset temperature (optional, if provided set temperature changes will be written to this item instead of 'item_set')
supplements
list of additional widgets / content to display
tolerance
tolerance by which values entered with +/- buttons are allowed to exeed min/max values (optional, default: limiting to min/max)
This widget can replace an RTR display (device.rtr) with almost the same functionality.
If you want to use knx dpt '20.102' use the item_mode 3 times for 'item_comfort', 'item_night' and 'item_frost'.
Examples
{{ device.rtr('rtr2', 'Heating', 'bath.rtr.act', 'bath.rtr.set', 'bath.rtr.mode', 'bath.rtr.mode', 'bath.rtr.mode', 'bath.rtr.state', 'bath.rtr.text') }}
{{ device.rtrslider('sl1', 'bath.rtr.act', 'bath.rtr.set', 'bath.rtr.mode', 'bath.rtr.mode', 'bath.rtr.mode', 'bath.rtr.state') }}
Classic RTR in 1x byte-mode
---
Heating ---

---

RTR slider in 1x byte-mode

New in v3.1: for MDT and similar devices, manual temperature adjustment can be sent to item_offset. The supplements have also been implemented. See device.rtr documentation for more info.

Author: Bonze, Wolfram v. Hülsen

Widgets

Design

Misc