Ich verstehe zudem nicht, warum im device.dimmer direkt Gruppenaddressen stehen?!
Hier ist meiner:
{{ device.dimmer('light_eating', 'Esstisch', 'living_room.light.eating', 'living_room.light.eating.value') }}
Siehe Doku: http://docu.smartvisu.de/2.8/index.p..._device.dimmer
{{ device.dimmer(id, txt, item_switch, item_value, min, max, step) }}
Heißt:
1) Beliebige ID
2) Beliebiger Text
3) die Gad zum normalen Schalten
4) die GAD mit dem Dimmwert
5) Minimalwert der Skala (optional)
6) Maximalwert der Skala (optional)
7) Wert für eine Stufe (optional)
Gemäß Code (https://github.com/Martin-Gleiss/sma...e.html#CL123):
Noch genauer kann ichs nicht beschreiben, sorry... Bitte erstmal einlesen...
Hier ist meiner:
{{ device.dimmer('light_eating', 'Esstisch', 'living_room.light.eating', 'living_room.light.eating.value') }}
Siehe Doku: http://docu.smartvisu.de/2.8/index.p..._device.dimmer
{{ device.dimmer(id, txt, item_switch, item_value, min, max, step) }}
Heißt:
1) Beliebige ID
2) Beliebiger Text
3) die Gad zum normalen Schalten
4) die GAD mit dem Dimmwert
5) Minimalwert der Skala (optional)
6) Maximalwert der Skala (optional)
7) Wert für eine Stufe (optional)
Gemäß Code (https://github.com/Martin-Gleiss/sma...e.html#CL123):
Code:
/** * Standard dimmer with switching and dimming function * * @param unique id for this widget * @param name of the dimmer * @param a item for switching * @param a item for dimming * @param the minimum value if the slider is moved to total left (optional, default 0) * @param the maximum value if the slider is moved to total right (optional, default 255) * @param step between two values (optional, default 5) */
Kommentar