Successfully Integrating a Z-Wave Radiator Thermostat

I recently added a Z-Wave radiator thermostat to my smart home setup, and I wanted to share my experience in case it helps someone else. The thermostat I chose was the Coqon AV2011/38 from SMaBiT GmbH. It’s designed to be compatible with other Z-Wave devices, which was a big plus for me since I already have a few Z-Wave sensors and switches in my system.

The setup process was straightforward, but there were a couple of bumps along the way. When I first tried to include the thermostat into my Z-Wave network, I encountered an error message indicating that the device couldn’t be discovered. The error code mentioned was 0148:0001:0002::0.5. At first, I was a bit worried, but after doing a bit of research, I found that this error is relatively common and usually resolves itself after a few attempts.

Here’s what I did to get it working:

  1. I restarted my Z-Wave controller to ensure it was in the best possible state for inclusion.
  2. I placed the thermostat in inclusion mode as instructed by the manufacturer.
  3. I waited patiently for the controller to detect the device. It took a couple of tries, but eventually, it showed up in my device list!

Once the thermostat was successfully included, I set up a simple rule to adjust the temperature based on the time of day. I use openHAB for my automation, and it was surprisingly easy to configure the rule. Here’s a quick snippet of the rule I created:

plaintext
rule “Adjust radiator temperature based on schedule”
when
Time cron “0 7 * * *” // At 7 AM
then
sendCommand(myRadiadorTermostat, 20) // Set to 20°C in the morning
end

rule “Adjust radiator temperature based on schedule”
when
Time cron “0 22 * * *” // At 10 PM
then
sendCommand(myRadiadorTermostat, 15) // Set to 15°C in the evening
end

This setup has been working perfectly for me. I especially like how it integrates seamlessly with my other smart home devices. For example, if I’m running late and want to adjust the temperature before I get home, I can do so through my phone or the openHAB interface.

For anyone else looking to add a Z-Wave radiator thermostat, here are a few tips:

  • Ensure proper placement: The radiator thermostat should be placed in a spot where it can accurately measure the temperature without being obstructed.
  • Check for firmware updates: Like any smart device, keeping the firmware up to date ensures optimal performance and compatibility.
  • Test the inclusion process multiple times if needed: Sometimes, devices just need a few attempts to pair correctly.

If you have any questions or tips of your own, feel free to share them below! I’d love to hear how others have integrated Z-Wave thermostats into their setups.