Device-Widgets

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


device.rtr

Standard RTR (Room Temperatur Regulator)

Parameters
{{ device.rtr(id, txt, item_actual, item_set, item_comfort, item_night, item_frost, item_state, item_txt, step, item_offset, supplements) }}
id
unique id for this widget (optional)
txt
name of the rtr
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 actor (optional)
item_txt
an item for a text (some rtr have a text-display), (optional)
step
step for plus/minus buttons (optional, default: 0.5)
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
If you want to use knx dpt '20.102' use that gad/item 3 times for 'gad_mode', 'gad_night' and 'gad_frost'.
Examples
{{ device.rtr('rtr1', 'Heating', 'bath.rtr.act', 'bath.rtr.set', 'bath.rtr.comfort', 'bath.rtr.night', 'bath.rtr.frost', 'bath.rtr.state', 'bath.rtr.text') }}

{{ 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.rtr('', '', 'bath.rtr.act', 'bath.rtr.set', 'bath.rtr.mode', 'bath.rtr.mode',
'bath.rtr.mode', '', '', 0.2, 'bath.rtr.offset', [
device.uzsuicon('','uzsuitem','Presence','','','list','Present:1,Absent:2,Night:3'),
icon.heating('','','bath.rtr.set',0,90)
]) }}

{{ device.rtr('', 'Heating', 'bath.rtr.act', 'bath.rtr.set') }}
RTR in 3x bit-mode
---
Heating ---

jquery_minus
---
jquery_plus

RTR in 1x byte-mode
---
Heating ---

jquery_minus
---
jquery_plus

RTR in "MDT-mode" (as describe in SmartHomeNG wiki)

Notice: The set temperature will not change in offline mode as changes are sent to 'bath.rtr.offset' and have to be reflected by backend.
Simple RTR w/o mode and state
---
Heating

jquery_minus
---
jquery_plus


Author: Martin Gleiss

Widgets

Design

Misc