@Jens_Wensing , @stonke
Hi, although absolutely not production ready, it can do this now. Actually, I do the very same in my house.
I log when the front door is opened and a few other key places. I’ve rule a to log when ‘member of…’ changes and just add things I want to that group;
With this script
import org.slf4j.LoggerFactory
def logger = LoggerFactory.getLogger("org.openhab.core.automation.alarm")
logger.info("Notifying NxPanel!")
events.sendCommand("NSPanel_NxPanelNotification", triggeringItem.label+" opened")
and have a channel/item set called “notification”, as used above
- id: nx_panel_notify
channelTypeUID: mqtt:string
label: NxPanel Notification
description: ""
configuration:
formatBeforePublish: '{ "notifications": { "text": "%s" } }'
commandTopic: cmnd/nspanel/screen
Then whenever you change the notification item to anything within OH it’s logged.
Same approach can be done for the little icons
Here are some examples to get the idea;
{ "warnings":[{"id":5,"type":"zap","state":1}] }"
{ "warnings":[{"id":5,"type":"zap","state":0}] }"
{ "weather": { "temp": 27, "icon": "10d", "feels": 4 } }"
{ "warnings":[{"id":2,"type":"plug","state":1}] }"
{ "warnings":[{"id":2,"type":"speaker","state":2}] }"
{ "warnings":[{"id":4,"type":"robot","state":1}] }"
{ "warnings":[{"id":3,"type":"light","state":3}] }"
{ "warnings":[{"id":3,"type":"house","state":3}] }"
{ "weather": { "temp": 18, "icon": "02d", "summary": "Very nice day" } }"
{ "warnings":[{"id":4,"type":"heat","state":2}] }"
{ "warnings":[{"id":3,"type":"zap","state":3}] }"
{ "warnings":[{"id":2,"type":"light","state":1}] }"
{ "warnings":[{"id":2,"type":"none","state":0},{"id":3,"type":"none","state":0},{"id":4,"type":"none","state":0},{"id":5,"type":"none","state":0}] }"
These are current ones;
Open to any suggestion to add a few more useful ones! 
I’ll obviously document the full list when complete. I think a week or so yet, until a working version is ready.
For your weather, I’d recommend added the openweather binding and having a rule to push these items when any change;
def weather = ir.getItem("weather_icon_id").state.toString()
def outdoorTemp = ir.getItem("outdoor_temp").state.intValue()
def apparentTemp = ir.getItem("apparent_temperature").state.intValue()
def json = String.format(
"{ \"weather\": { \"temp\": %d, \"icon\": \"%s\", \"feels\": %d } }",
outdoorTemp, weather, apparentTemp)
events.sendCommand("ns_screen_command",json)
I’ve a channel for sending any command that’s not specific (as used above)
- id: ns_screen_command
channelTypeUID: mqtt:string
label: NS Screen Command
description: ""
configuration:
commandTopic: cmnd/nspanel/screen
Hope that help.