Hi everyone, I wanted to share my experience with the Z-Wave Aeotec Smart Dimmer 6 and discuss a common issue I encountered while setting it up. If you’re like me, you might be puzzled about why the dimmer doesn’t switch to 100% brightness when using the switch element in your sitemap. Let me walk you through my journey and the solutions I found.
The Setup
I configured my dimmer with the following setup in my openHAB environment:
plaintext
// Standleuchte Dimmer EG_WZ_SL_Helligkeit “Standleuchte [%2.0f]” [“Lighting”] {channel=“zwave:device:312486fb:node5:switch_dimmer”}
Number EG_WZ_SL_Leistung “Leistung [%f Watt]” {channel=“zwave:device:312486fb:node5:meter_watts”}
Number EG_WZ_SL_Verbrauch “Verbrauch [%.2f kWh]” {channel=“zwave:device:312486fb:node5:meter_kwh”}
And my sitemap looks like this:
plaintext
sitemap EG_WZ label=“Standleuchte Test” {
Frame label=“Wohnzimmer Standleuchte” {
Switch item=EG_WZ_SL_Helligkeit label=“AN / AUS [%2.0f]”
Slider item=EG_WZ_SL_Helligkeit label=“Helligkeit [%2.0f]”
Text item=EG_WZ_SL_Leistung label=“aktuelle Leistung [%2.0f Watt]” icon=“light”
Text item=EG_WZ_SL_Verbrauch label=“Verbrauch [%2.2f kWh]” icon=“light”
}
}
The Issue
When I tested the dimmer, I noticed something odd:
- Turning on the dimmer using the slider worked perfectly. For example, setting it to 20% brightness updated the labels and dimmed the lamp as expected.
- Turning off the dimmer using the switch element also worked without any issues.
- However, when I tried turning the dimmer back on using the switch element, the labels updated to 100%, and the slider jumped to 100%. But the lamp didn’t reach full brightness—it stayed at the previous slider setting, like 20%.
This behavior was frustrating, especially since the lamp should have been at full brightness when turned on via the switch.
Debugging the Problem
I dug into the logs to understand what was happening. Here’s what I found:
- When using the slider, the dimmer responded correctly, updating both the brightness and the meter values.
- When using the switch element to turn the dimmer on, the dimmer sent a command to set the brightness to 100%, but the lamp didn’t respond as expected. Instead, it stayed at the previous slider setting.
- Adjusting the brightness via the slider after this fixed the issue, but it shouldn’t have been necessary.
Possible Solutions
After some research and experimentation, here’s what I discovered:
- Binding Configuration: Ensure your binding configuration is up to date and correctly set up for Z-Wave devices. Sometimes, outdated bindings can cause unexpected behavior.
- Firmware Updates: Check if your Aeotec Smart Dimmer 6 has the latest firmware. Outdated firmware can sometimes lead to compatibility issues.
- Channel Configuration: Verify that the channels in your items file are correctly configured. The
switch_dimmerchannel should handle both on/off and brightness commands seamlessly. - Alternative Commands: If the issue persists, consider using alternative commands or rules to force the dimmer to reset to 100% brightness when turned on via the switch element.
My Experience
I found that updating the binding and ensuring the firmware was current resolved most of the issues. However, I still encountered occasional hiccups, which I addressed by creating a small rule in openHAB to reset the dimmer to 100% when turned on via the switch element. This rule ensures that the lamp reaches full brightness without manually adjusting the slider.
Final Thoughts
The Aeotec Smart Dimmer 6 is a fantastic device with a lot of potential, but like any smart device, it can sometimes throw curveballs. By staying patient, doing some research, and experimenting with solutions, I was able to get it working perfectly in my setup. I hope this post helps others facing similar issues and encourages you to explore the full capabilities of your Z-Wave devices!
Happy automating! ![]()