Hi =)
I run OpenHab in a docker-container (2.5.9) on a almost freshly installed pi with hypriot os.
I have the problemn that some of my rules stop working afrter some time. Àll the devices (Z-Wave) still work, but the rules don’t. Als the behaviour is funny, as some rules only work “partially” after some time (2-6 weeks). In most cases, the issue is resolved after a reboot, but that’s no real solution…I want to find the problem =). It also affects not all rules, but only some.
All my rules are in seperate text files (some are together in one). Here is one, that stop’s working after some time, but werks perfectly after reboot…
rule "Badezimmerspiegel Regel"
when
Item Dimmer_Badezimmerlicht received update
then
if (Dimmer_Badezimmerlicht.state > 80) {
Badezimmerspiegel.sendCommand(ON)
}
else Badezimmerspiegel.sendCommand(OFF)
end
Did some further investigation…sometimes I don’t get the reports from Z-Wave devices…I’m using Aeotec nano dimmer and used “send hail cc when using external switch” on parameter 80…is this correct? I don’t wanted to overload z-wave network with reports an keep it fast…