Hi there,
Problem:
I have been trying to get KNX dimming (DPT 3.007, relative dimming) to work in Home Assistant, but I haven’t been successful. Neither the “KNX - Light Entities Control” Blueprint nor the built-in KNX integration seem to work correctly for my setup.
Current Setup:
• KNX Light Configuration:
knx:
light:
- name: “KNX Light”
address: “2/0/17” # Switch address
state_address: “2/0/21” # Status address (on/off feedback)
brightness_address: “2/0/18” # Relative dimming (DPT 3.007)
brightness_state_address: “2/0/20” # Brightness feedback
• Tested with Blueprint (kalhimeo’s KNX light control), but the brightness values remain between 0-255 instead of 0-15.
• Adjusting brightness_step in the Blueprint didn’t fix the issue.
• Home Assistant’s UI slider does not control the brightness correctly. When moving the slider, nothing happens.
What Works:
• Manually sending dimming commands via Developer Tools → Actions works fine:
service: knx.send
data:
address: “2/0/18”
payload: 15
• Values between 0 and 15 dim correctly.
• Negative values (e.g., -7) dim down.
What I Need Help With:
-
How can I properly scale the brightness values (0-255) to 0-15 inside the Blueprint or Home Assistant’s KNX integration?
-
Is there a way to make the Home Assistant UI slider send the correct range (0-15) instead of 0-255?
Any help would be greatly appreciated!
Thanks Marc