Posts: 8475
Threads: 47
Joined: Jun 2015
Reputation:
485
A5-20-01 is already in our to-do list
Posts: 4
Threads: 0
Joined: Dec 2015
Reputation:
0
29.01.2016, 19:43
(This post was last modified: 29.01.2016, 20:10 by zubin.)
[attachment=113 Wrote:jorgenbl pid='704' dateline='1450642519']
Hello Jørgen,
I hope your doing fine.
To let you know,i got through the dimming, but i have an further issue on this which is as follows :
1. Whenever i operate the Eltako Dimmer from Logic Machine i.e simulate the value its dim successfully and also i receive back the feedback dimming value, but when i operate from Eltako Wireless Switch FT4 the Eltako Dimmer operates accordingly and sends the dimming value back but after sometime again Logic Machine writes the earlier forced value. i hope you got my point. so this is a mismatch, i want to operate Dimmer simultaneously via both Eltako Wireless Switch and Logic Machine, so value has to be updated in Logic Machine when operated from Wireless Switch which updates into feedback Object but again after some time the previously created 1 byte unsigned Object re-writes the last value.so let me know a solution to avoid this conflict.
2. Also let me know your teach in telegram structure . like when i used your mention code for teachin telegram i get code "00-00-00-00" which Eltako FUD dosen't accept, so i change your code to "02-00-00-00"(b3-b2-b1-b0), Please confirm is this right, its working for Dimming but for that i taught it in position of GFVS PC/PCT on rotary switch.So let me know your Teachin Telegram structure when you use your code.
You can refer two attached image for details:
1.Teach in telegram received when i use your script.
2.Teach in telegram received when i used my modified script - 02-00-00-00
Looking forward to your positive reply.
(09.11.2015, 11:03)Hello Edgars, Wrote: Are you planning to add following profiles :
1. A5-12-01 - ENERGY KWH MONITORING.
2. A5-20-03 - WIRELESS BI-DIR ACTUATOR (FOR % FEEDBACK VISUALIZATION)
Waiting for your positive reply.
Thanks.
Posts: 51
Threads: 14
Joined: Jul 2015
Reputation:
1
+1 for EEP A5-20-01,
thanks
Posts: 17
Threads: 1
Joined: Aug 2015
Reputation:
0
Hi Zubin,
regarding 1) I experienced the same as you.
The 00-00-00 Raw 4-byte Profile mapped to you actuator under the "KNX >> Enocean" tab and "Device Mapping" has an option "Send timer".
It will send as often as you specify here, the last value set for the object. Unfortunately I found that this send timer value can maximum be set to 1000 seconds. At that interval it will set the value back to whatever configured on the object in the Logicmachine (Assuming you have changed this with some other system/Switch). I have not been able to turn off this interval either.
The solution I found to this problem (not very elegant, but works, is to set a dummy value in the script, right after the desired value)
The dummy value then set to the object will not be readable by the actuator, thus not change it's current last working value. This results in when the interval occurs the dummy value is sent instead. I guess this will not be a problem when they update the firmware and correct profiles are available.
Here´s my script:
Code: -- dimming
b3 = 0x02
-- dimmer value [0..100]
b2 = event.getvalue()
-- ramp time in seconds
b1 = 1
-- data telegram, absolute value, store final
b0 = 9
a3 = bit.lshift(b3, 24)
a2 = bit.lshift(b2, 16)
a1 = bit.lshift(b1, 8)
res = bit.bor(a3,a2,a1,b0)
grp.update('1/1/12', res, dt.uint32)
-- dummy value to set to object right after
grp.update('1/1/12', 1111111111, dt.uint32)
regarding 2) I still use the teach in procedure as outlined before. It works for me. You might be correct though  Whatever works for you is great I guess!
Posts: 8475
Threads: 47
Joined: Jun 2015
Reputation:
485
We will add an option to set timer value to 0 so you can disable it completely in next FW.
Posts: 4
Threads: 0
Joined: Dec 2015
Reputation:
0
06.02.2016, 15:43
Hello Jorbengl,
Thanks for your reply.
Meanwhile i will continue with your dummy script, until the new firmware is released.
Also have you done scripting for ELTAKO Curtain Controller - FSB61NP-230V, i am planning to do, so if you can share me the scripting it would be great.
Also what else Eltako product you have tested with LM ? (Just for information sharing)
Thanks,
Reply,
ZUBIN
Posts: 98
Threads: 17
Joined: Feb 2021
Reputation:
3
Hi,
Where can I find an updates list of supported enocean profiles?
Maybe add them to the kb?
Thanks!
tigi
Posts: 8475
Threads: 47
Joined: Jun 2015
Reputation:
485
Here's the current supported profile list:
Code: F6-01-01 = Rocker Switch, 1 Rocker
F6-01-02 = Rocker Switch, 1 Rocker (inverted)
F6-01-03 = Rocker Switch, 1 Rocker (separate)
F6-02-01 = Rocker Switch, 2 Rocker
F6-02-02 = Rocker Switch, 2 Rocker (inverted)
F6-03-01 = Rocker Switch, 4 Buttons
F6-03-02 = Rocker Switch, 2 Buttons - On/Off/Toggle/Dim/Scene
F6-03-03 = Rocker Switch, 4 Buttons - On/Off/Toggle/Dim/Scene
F6-04-01 = Key Card Activated Switch
F6-05-01 = Liquid Leakage Sensor
F6-10-00 = Window Handle
D5-00-01 = Single Input Contact
A5-02-01 = Temperature Sensor (-40C..0C)
A5-02-02 = Temperature Sensor (-30C..10C)
A5-02-03 = Temperature Sensor (-20C..20C)
A5-02-04 = Temperature Sensor (-10C..30C)
A5-02-05 = Temperature Sensor (0C..40C)
A5-02-06 = Temperature Sensor (10C..50C)
A5-02-07 = Temperature Sensor (20C..60C)
A5-02-08 = Temperature Sensor (30C..70C)
A5-02-09 = Temperature Sensor (40C..80C)
A5-02-0A = Temperature Sensor (50C..90C)
A5-02-0B = Temperature Sensor (60C..100C)
A5-02-10 = Temperature Sensor (-60C..20C)
A5-02-11 = Temperature Sensor (-50C..30C)
A5-02-12 = Temperature Sensor (-40C..40C)
A5-02-13 = Temperature Sensor (-30C..50C)
A5-02-14 = Temperature Sensor (-20C..60C)
A5-02-15 = Temperature Sensor (-10C..70C)
A5-02-16 = Temperature Sensor (0C..80C)
A5-02-17 = Temperature Sensor (10C..90C)
A5-02-18 = Temperature Sensor (20C..100C)
A5-02-19 = Temperature Sensor (30C..110C)
A5-02-1A = Temperature Sensor (40C..120C)
A5-02-1B = Temperature Sensor (50C..130C)
A5-04-01 = Temperature & Humidity Sensor (0C..40C, 0%..100%)
A5-04-02 = Temperature & Humidity Sensor (-20C..60C, 0%..100%)
A5-06-01 = Light Sensor (300lx..60000lx)
A5-06-02 = Light Sensor (0lx..1024lx)
A5-06-03 = Light Sensor (0lx..100lx, 300lx..30000lx)
A5-07-01 = Occupancy Sensor
A5-08-01 = Light Sensor 0lx to 510lx, Temperature 0°C to +51°C and Occupancy
A5-08-02 = Light Sensor 0lx to 1020lx, Temperature 0°C to +51°C and Occupancy
A5-08-03 = Light Sensor 0lx to 1530lx, Temperature -30°C to +50°C and Occupancy
A5-09-04 = Humidity, CO2, Temperature Sensor
A5-10-01 = Temperature Sensor; Set Point, Fan Speed and Occupancy Control
A5-10-02 = Temperature Sensor; Set Point, Fan Speed and Day/Night Control
A5-10-03 = Temperature Sensor; Set Point Control
A5-10-04 = Temperature Sensor; Set Point and Fan Speed Control
A5-10-05 = Temperature Sensor; Set Point and Occupancy Control
A5-10-06 = Temperature Sensor; Set Point and Day/Night Control
A5-10-07 = Temperature Sensor; Set Point and Fan Speed Control
A5-10-08 = Temperature Sensor; Fan Speed Control
A5-10-09 = Temperature Sensor; Fan Speed and Day/Night Control
A5-10-0A = Temperature Sensor; Set Point and Single Input Contact
A5-10-0B = Temperature Sensor and Single Input Contact
A5-10-0C = Temperature Sensor and Occupancy Control
A5-10-0D = Temperature Sensor and Day/Night Control
A5-10-10 = Temperature and Humidity Sensor; Set Point and Occupancy Control
A5-10-11 = Temperature and Humidity Sensor; Set Point and Day/Night Control
A5-10-12 = Temperature and Humidity Sensor; Set Point Control
A5-10-13 = Temperature and Humidity Sensor; Occupancy Control
A5-10-14 = Temperature and Humidity Sensor; Day/Night Control
A5-14-01 = Single Input Contact, Supply Voltage Monitor
A5-20-10 = Generic HVAC interface
A5-30-01 = Single Input Contact, Battery Monitor
A5-30-02 = Single Input Contact
A5-38-08-01 = Switch
A5-38-08-02 = Dimmer
Posts: 98
Threads: 17
Joined: Feb 2021
Reputation:
3
(01.12.2025, 07:54)admin Wrote: Here's the current supported profile list:
Code: F6-01-01 = Rocker Switch, 1 Rocker
F6-01-02 = Rocker Switch, 1 Rocker (inverted)
F6-01-03 = Rocker Switch, 1 Rocker (separate)
F6-02-01 = Rocker Switch, 2 Rocker
F6-02-02 = Rocker Switch, 2 Rocker (inverted)
F6-03-01 = Rocker Switch, 4 Buttons
F6-03-02 = Rocker Switch, 2 Buttons - On/Off/Toggle/Dim/Scene
F6-03-03 = Rocker Switch, 4 Buttons - On/Off/Toggle/Dim/Scene
F6-04-01 = Key Card Activated Switch
F6-05-01 = Liquid Leakage Sensor
F6-10-00 = Window Handle
D5-00-01 = Single Input Contact
A5-02-01 = Temperature Sensor (-40C..0C)
A5-02-02 = Temperature Sensor (-30C..10C)
A5-02-03 = Temperature Sensor (-20C..20C)
A5-02-04 = Temperature Sensor (-10C..30C)
A5-02-05 = Temperature Sensor (0C..40C)
A5-02-06 = Temperature Sensor (10C..50C)
A5-02-07 = Temperature Sensor (20C..60C)
A5-02-08 = Temperature Sensor (30C..70C)
A5-02-09 = Temperature Sensor (40C..80C)
A5-02-0A = Temperature Sensor (50C..90C)
A5-02-0B = Temperature Sensor (60C..100C)
A5-02-10 = Temperature Sensor (-60C..20C)
A5-02-11 = Temperature Sensor (-50C..30C)
A5-02-12 = Temperature Sensor (-40C..40C)
A5-02-13 = Temperature Sensor (-30C..50C)
A5-02-14 = Temperature Sensor (-20C..60C)
A5-02-15 = Temperature Sensor (-10C..70C)
A5-02-16 = Temperature Sensor (0C..80C)
A5-02-17 = Temperature Sensor (10C..90C)
A5-02-18 = Temperature Sensor (20C..100C)
A5-02-19 = Temperature Sensor (30C..110C)
A5-02-1A = Temperature Sensor (40C..120C)
A5-02-1B = Temperature Sensor (50C..130C)
A5-04-01 = Temperature & Humidity Sensor (0C..40C, 0%..100%)
A5-04-02 = Temperature & Humidity Sensor (-20C..60C, 0%..100%)
A5-06-01 = Light Sensor (300lx..60000lx)
A5-06-02 = Light Sensor (0lx..1024lx)
A5-06-03 = Light Sensor (0lx..100lx, 300lx..30000lx)
A5-07-01 = Occupancy Sensor
A5-08-01 = Light Sensor 0lx to 510lx, Temperature 0°C to +51°C and Occupancy
A5-08-02 = Light Sensor 0lx to 1020lx, Temperature 0°C to +51°C and Occupancy
A5-08-03 = Light Sensor 0lx to 1530lx, Temperature -30°C to +50°C and Occupancy
A5-09-04 = Humidity, CO2, Temperature Sensor
A5-10-01 = Temperature Sensor; Set Point, Fan Speed and Occupancy Control
A5-10-02 = Temperature Sensor; Set Point, Fan Speed and Day/Night Control
A5-10-03 = Temperature Sensor; Set Point Control
A5-10-04 = Temperature Sensor; Set Point and Fan Speed Control
A5-10-05 = Temperature Sensor; Set Point and Occupancy Control
A5-10-06 = Temperature Sensor; Set Point and Day/Night Control
A5-10-07 = Temperature Sensor; Set Point and Fan Speed Control
A5-10-08 = Temperature Sensor; Fan Speed Control
A5-10-09 = Temperature Sensor; Fan Speed and Day/Night Control
A5-10-0A = Temperature Sensor; Set Point and Single Input Contact
A5-10-0B = Temperature Sensor and Single Input Contact
A5-10-0C = Temperature Sensor and Occupancy Control
A5-10-0D = Temperature Sensor and Day/Night Control
A5-10-10 = Temperature and Humidity Sensor; Set Point and Occupancy Control
A5-10-11 = Temperature and Humidity Sensor; Set Point and Day/Night Control
A5-10-12 = Temperature and Humidity Sensor; Set Point Control
A5-10-13 = Temperature and Humidity Sensor; Occupancy Control
A5-10-14 = Temperature and Humidity Sensor; Day/Night Control
A5-14-01 = Single Input Contact, Supply Voltage Monitor
A5-20-10 = Generic HVAC interface
A5-30-01 = Single Input Contact, Battery Monitor
A5-30-02 = Single Input Contact
A5-38-08-01 = Switch
A5-38-08-02 = Dimmer
Hi Admin,
Thanks for the updates EEP list!
I was hoping to see the 05-20-01 in the list, since the requests I read dating from 2016.
But I see the 05-20-10 is in the list, are these profiles backwards compatible? Meaning a device such as the Micropelt iTRV MVA008/009 that uses 05-10-01 or 05-20-06 can be used?
Thanks.
Tigi
|