[SOLVED] KNX binding doesn't refresh

Hi all,
I have started with a complete blank installation of openhab 2.2 stable.
I installed the knx binding over PaperUI and configrued the following:
knx.cfg

ip=192.168.178.72
ignorelocalevents=true
type=TUNNEL
localIp=192.168.178.100

default.sitemap

sitemap default label=“Our Home” {
Frame {
Default item=Livingroom_Temperature
}

}

test.items

Number Livingroom_Temperature "Temperature [%.1f °C]" { knx = "<1/2/1" }

The temperature of KNX is displayed on Classic UI, but it doesn’t refresh the value. Only a restart of openhab loads new values.

Can someone help me?
Thank you

Either configure the knx sensor to send an update each time the temperature changes or setup openHAB to send a read request periodically:

Number Livingroom_Temperature "Temperature [%.1f °C]" { knx = "<(60)1/2/1" }
1 Like

enable TRACE for the logs and post them here to see what could be wrong:

log:set TRACE org.openhab.binding.knx
log:set TRACE tuwien.auto.calimero

most likely Udo’s response is better :slight_smile:

Thank you for the quick response. Problem solved!