As a newcomer to the world of smart home automation, I’ve been on an exciting journey learning how to integrate technology into my daily life. One of my recent projects involved setting up a rule to automatically turn off the fireplace when the room temperature exceeds a certain threshold. While this seems straightforward, I encountered some challenges along the way that I’d like to share and discuss with the community. I started by configuring my openHABian system on a Raspberry Pi, using Paper UI for bindings and items setup. Everything worked manually, but when I tried to implement the automation rule, it seemed like the system wasn’t recognizing it at all. Here’s the code I used: plaintext rule “Fireplace_off_over_temperature” when Temperature > Requested_Fireplace_temperature then Extraswitch.sendCommand(OFF) end I also experimented with checking the state of the temperature sensor explicitly: plaintext rule “Fireplace_off_over_temperature” when Temperature.state > Requested_Fireplace_temperature.state then Extraswitch.sendCommand(OFF) end Despite these efforts, the rule didn’t trigger as expected. I suspect it might be related to how the temperature values are being compared or how the rule engine processes the inputs. Has anyone else encountered similar issues or have insights to share? This experience has been both frustrating and enlightening. It’s reminded me how important it is to thoroughly understand the underlying logic and data types when working with automation rules. I’m eager to learn from others’ experiences and tips on troubleshooting such issues. On a more positive note, I’ve been impressed by the versatility of openHAB and the supportive community here. It’s inspiring to see how many creative solutions people have implemented to enhance their homes. I’m looking forward to contributing more to this community as I continue my journey into smart home automation. If anyone has advice on refining my rule or debugging techniques, I’d be grateful to hear it! Let’s keep learning and innovating together. ![]()