Issue with Homematic Binding

Hi all together,

actually i have an for me not understandable issue with the homematic binding:

I have several roomcontrollers connected and ím able to show the values on my test sitemep (e.g. Temperature), but i´m not able to log this data.

I checked the openhab logs and there are all value changes from other systems recordniced but absolutely no changes from any homematic device.

As mentioned before the values are displayed at the sitemap and are queryable through the karaf console.

Here an example for an Temperature Thing:
Thing HM-CC-TC IEQ0067902 “Raumregler” @ “Büro”

The Item:
Number ActTempBuero {channel=“homematic:HM-CC-TC:ccu:IEQ0067902:1#TEMPERATURE”}

The Sitemap:
Text item=ActTempBuero label=“Temperatur Büro [%.1f °C]” icon=“temperature”

and my Persist.conf:
Strategies {
everyMinute : “0 * * * * ?”
every5Minutes : “0 */5 * * * ?”
everyHour : “0 0 * * * ?”
everyDay : “0 0 0 * * ?”
}

Items {
CPU_Load, Sensor_CPUTemp, Memory_Used_Percent, Memory_Used, Memory_Available : strategy = everyMinute
Storage_Used_Percent, Storage_Available : strategy = everyHour
Smartphone*, Tablet* : strategy = everyChange
ActTemp*, ActHum* : strategy = everyChange, everyHour
}

The * in the itemdefinition is no wildcard, it is a notation to use members of the group. You need to define the groups and put the temp and humidity items inside to make it work that way.

Thank you very much for your help,

it works!!
Sometimes so small issues can consume so much time.