Hey Guys!
I am really new to this community and would need some guidelines.
I have installed openhabian on rasperry pi 3 + misquitto as MQTT broker.
.fx
I send data to OH2 via MQTT.fx and read it into Number.
Number BasementMonitor_Temp01 “Temperature [%.1f °C]” (gC_Furnace, gTemperature) {mqtt="<[brokerpi:mytemperature:state:default]"}
I created simple rule like MQTT echo. What I get I send back.
rule "Spremba stanja"
when Item BasementMonitor_Temp01 changed
then
publish(“brokerpi”, “Change”, BasementMonitor_Temp01.toString())
Now comes very strange problem.
Sometimes response is instant and sometimes it takes up to 10s that data is processed and echo is sent back.
Anyone knows what could be problem?