You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I started with Smarthome and Smartvisu, and I have problems to send a DPT 3.007 Dimming Control (4 bits).
With SmartVisu, i use the Widget "basic.button". These are configured in an HTML page.
Here is the code of my html page (roomsalleamanger.html) in the folder
"/var/www/smartvisu/pages/myhome" :
If I dont make mistakes, the logic table for Dimming Control is:
With:
For DIM INCREASE
bControl = 1
byRange.2 = 0
byRange.1 = 1
byRange.0 = 0
--> 9 dec.
For DIM DECREASE
bControl = 0
byRange.2 = 0
byRange.1 = 0
byRange.0 = 1
--> 1 dec.
For DIM STOP
bControl = 0
byRange.2 = 0
byRange.1 = 0
byRange.0 = 0
--> 0 dec.
My file ‘items’ (test.conf) in the folder « /usr/smarthome/items/» is configured as follow:
and the message in the smarthome.log file is:
I also tested with a logics file (test_dimmer.py) and the function:
sh.knx.groupwrite('0/0/2', 9, '3') but it does not work.
the message in the smarthome.log file is:
Thank you for the help you can give me.
Best regard.
The text was updated successfully, but these errors were encountered:
[[[dimmer]]]
visu = yes
type = list
knx_dpt = 3
knx_send = 0/0/2
With this configuration, the message in the smarthome.log file is:
Item 'EG.salleamanger.dimmer': value ([1,2]) does not match type (list)
-------- Message d'origine--------
De: Marcus [mailto:notifications@github.com]
Date: mer. 23/10/2013 22:26
À: mknx/smarthome
Cc: DERBEQUE Steve
Objet : Re: [smarthome] KNX DPT 3.007 Dimming Control not send on Bus (#33)
Hey,
Above all, I congratulate you for your job.
I started with Smarthome and Smartvisu, and I have problems to send a DPT 3.007 Dimming Control (4 bits).
With SmartVisu, i use the Widget "basic.button". These are configured in an HTML page.
Here is the code of my html page (roomsalleamanger.html) in the folder
"/var/www/smartvisu/pages/myhome" :
If I dont make mistakes, the logic table for Dimming Control is:
With:
For DIM INCREASE
bControl = 1
byRange.2 = 0
byRange.1 = 1
byRange.0 = 0
--> 9 dec.
For DIM DECREASE
bControl = 0
byRange.2 = 0
byRange.1 = 0
byRange.0 = 1
--> 1 dec.
For DIM STOP
bControl = 0
byRange.2 = 0
byRange.1 = 0
byRange.0 = 0
--> 0 dec.
My file ‘items’ (test.conf) in the folder « /usr/smarthome/items/» is configured as follow:
and the message in the smarthome.log file is:
I also tested with a logics file (test_dimmer.py) and the function:
sh.knx.groupwrite('0/0/2', 9, '3') but it does not work.
the message in the smarthome.log file is:
Thank you for the help you can give me.
Best regard.
The text was updated successfully, but these errors were encountered: