running OH 5.1.4 on docker with SolarForecast Binding (official binding, not marketplace version).
two items are linked to the channel solarforecast:sc-site:PL12:pessimistic#power-estimate:
- both are Numbers
- both are W in UoM
- both are in a “forecast”-Group “PL12Forecast”
- one is getting updated (the “old” one:
SC_PessimisticPowerestimate, which is linked to the binding since) - one is NOT getting updated - or stopped getting updated? (a “new” one:
EMS_PrognosePVPower, which I added later on)
What I tried:
- unlinked the item, relinked it
- checked both items: they’re the same except they differ in the groups.
GET items/NAME
old one:
{
"link": "https://192.168.78.20:8443/rest/items/SC_PessimisticPowerestimate",
"state": "83 W",
"stateDescription": {
"pattern": "%.0f %unit%",
"readOnly": true,
"options": []
},
"lastState": "517 W",
"lastStateUpdate": 1779823320000,
"lastStateChange": 1779821940000,
"unitSymbol": "W",
"metadata": {
"unit": {
"value": "W",
"editable": true
},
"semantics": {
"value": "Point_Forecast",
"config": {
"relatesTo": "Property_Power",
"isPointOf": "PVSC"
},
"editable": false
},
"stateDescription": {
"value": " ",
"config": {
"pattern": "%.0f %unit%"
},
"editable": true
}
},
"editable": true,
"type": "Number:Power",
"name": "SC_PessimisticPowerestimate",
"label": "Power Forecast",
"category": "sun",
"tags": [
"Power",
"Forecast"
],
"groupNames": [
"PVSC",
"PL12Forecast"
]
}
new one:
{
"link": "https://192.168.78.20:8443/rest/items/EMS_PrognosePVPower",
"state": "1298 W",
"stateDescription": {
"pattern": "%.0f %unit%",
"readOnly": true,
"options": []
},
"lastState": "128 W",
"lastStateUpdate": 1779822420000,
"unitSymbol": "W",
"metadata": {
"unit": {
"value": "W",
"editable": true
},
"semantics": {
"value": "Point_Forecast",
"config": {
"relatesTo": "Property_Power",
"isPointOf": "PL12EMS"
},
"editable": false
},
"stateDescription": {
"value": " ",
"config": {
"pattern": "%.0f %unit%"
},
"editable": true
}
},
"editable": true,
"type": "Number:Power",
"name": "EMS_PrognosePVPower",
"label": "PV Power Forecast",
"category": "energy",
"tags": [
"Power",
"Forecast"
],
"groupNames": [
"PL12EMS",
"PL12Forecast"
]
}
what did I miss?
