OH 2.3 Huge delay between actions - 6 second (was also on OH 1.x)

Hi,

I have the same issue.
I have monitor the KNX bus while switching ON following by switching OFF from OH paperui control, and I got the following behavior.

  • +0 sec.: 1st ON message
  • +3 sec.: 2nd ON message
  • +6 sec.: 1st OFF message
  • +9 sec.: 2nd OFF message

any idea?

# Time Service Flags Prio Source Address Source Name Destination Address Destination Name Rout Type DPT Info
1 19/08/2020 11:05:11.899 from bus Low 1.1.201 1/0/16 6 GroupValueWrite $01
2 19/08/2020 11:05:11.988 from bus Low 1.1.1 14/0/16 6 GroupValueWrite $01
3 19/08/2020 11:05:14.900 from bus Low 1.1.201 1/0/16 6 GroupValueWrite $01
4 19/08/2020 11:05:15.024 from bus Low 1.1.1 14/0/16 6 GroupValueWrite $01
5 19/08/2020 11:05:17.905 from bus Low 1.1.201 1/0/16 6 GroupValueWrite $00
6 19/08/2020 11:05:18.020 from bus Low 1.1.1 14/0/16 6 GroupValueWrite $00
7 19/08/2020 11:05:20.907 from bus Low 1.1.201 1/0/16 6 GroupValueWrite $00
8 19/08/2020 11:05:20.993 from bus Low 1.1.1 14/0/16 6 GroupValueWrite $00

Check your configuration. I am not 100% sure but I think it was a misconfiguration of the localSourceAddr of the KNX Bridge.

To be specific, I took a look in my configuration git and yes, this were the changes to fix the KNX delay problem:

-    autoReconnectPeriod=1,
-    localSourceAddr="15.15.242" // KNX-Adresse des Interfaces
+    autoReconnectPeriod=60,
+    localSourceAddr="0.0.0" // KNX-Adresse des Interfaces

So you should try localSourceAddr="0.0.0".

2 Likes

Thanks Oliver,

I did the modification you suggested and it is working without delay.

Wow I was looking for that for long period

:pray:

1 Like

thank you so much Oliver for figuring this out! It also works for me too without any delays between sequenced actions on KNX …

1 Like