Hallo, ich kann bei mir kein Licht schalten, hab folgendes in die smartvisu.comf und in die room_living.html geschrieben.
Kann mir wer sagen wo der Fehler liegt?
Per Putty kann ich die Gruppenadressen schalten.
Danke
Kann mir wer sagen wo der Fehler liegt?
Per Putty kann ich die Gruppenadressen schalten.
Danke
Code:
[EG] [[Vorraum]] [[[deckenspot_vorraum]]] [[[[OnOff]]]] type = bool knx_dpt = 1 visu_acl = rw knx_listen = 1/4/29 knx_send = 1/1/29 knx_init = 1/1/1 [[[[Dimm_vorraum]]]] type = num knx_dpt = 5 visu_acl = rw knx_listen = 1/3/10 knx_send = 1/3/10 [[[door_vorraum]]] type = bool [[Buero]] [[[deckenlicht_buero]]] [[[[OnOff]]]] type = bool knx_dpt = 1 visu_acl = rw knx_listen = 2/1/1 knx_send = 2/0/1 knx_init = 2/1/1 [[[door_buero]]] type = bool
HTML-Code:
{% extends "rooms.html" %} {% block content %} <h1><img class="icon" src='{{ icon0 }}scene_office.png'/>Büro</h1> <div class="block"> <div class="set-2" data-role="collapsible-set" data-theme="c" data-content-theme="a" data-mini="true"> <div data-role="collapsible" data-collapsed="false" > <h3>Licht</h3> <table width="90%"> <tr> <td align="left" width="100px"> {{ basic.switch('deckenlicht_buero', 'EG.Buero.deckenlicht_buero.OnOff', icon1~'light_light.png', icon0~'light_light.png') }} </td> <td>Deckenlicht</td> </tr> </table> </div> </div> </div> <div class="block"> <div class="set-2" data-role="collapsible-set" data-theme="c" data-content-theme="a" data-mini="true"> <div data-role="collapsible" data-collapsed="false"> <h3>Rollladen</h3> {% import "widget_shutter.html" as shutter %} <table width="100%"><tr> <td width="50%">{{ shutter.two ('shutter1', 'Tür', 'eg.buero.rollladen.west.fahren', 'eg.buero.rollladen.west.stopp', 'eg.buero.rollladen.west.position', 'eg.buero.rollladen.west.beschatten') }}</td> <tr></table> </div> </div> </div> <div class="block"> <div class="set-2" data-role="collapsible-set" data-theme="c" data-content-theme="a" data-mini="true"> <div data-role="collapsible"> <h3>Status Tür und Fenster</h3> {% import "widget_window.html" as window %} <p> {{ window.two ('window1', 'Tür', 'eg.buero.fenster.west' ) }} </p> </div> </div> </div> {% endblock %}
Kommentar