This forum uses cookies
This forum makes use of cookies to store your login information if you are registered, and your last visit if you are not. Cookies are small text documents stored on your computer; the cookies set by this forum can only be used on this website and pose no security risk. Cookies on this forum also track the specific topics you have read and when you last read them. Please confirm that you accept these cookies being set.

Hue Brightness feedback
(30.07.2025, 19:27)NKereshki Wrote: I just want to clarify that I also have a physical KNX button through which I turn the lights on/off and dim them. If I separate all controls from feedback, I can't synchronize the KNX button and sometimes I have to press it twice. What occurred to me is if it also "listens" to the feedback group address.

This is "normal" KNX behaviour, and you fix it by adding the status GA to the switch object for the KNX switch in ETS.

Like this: 

   

1/0/23 is the switch object, 1/3/23 is the status object. It's important that the switch object is first.
Reply
Does your Scrips (user.hue) includes this line  ?

Code:
function setCT(Light_num,ct)
  ct = math.floor(1000000 / ct)
  ct = math.min(500, ct)
  ct = math.max(154, ct)
  --HTTP request send
  body_msg = '{"on":true,"ct":'..ct..'}'
  return sendToLight(Light_num,body_msg)
end
  if not just add this function, then you are good to go with the only ct script
Reply


Forum Jump: