Thank your for your quick reply.
Below you may find a simple rule with the task to switch on my amplifier when a Yamaha streamer goes from standby to ON. The corresponding Item changes its value correctly, but the rule never fires.
This happens with every rule wether it would be event triggered or by a cron expression - no execution at all.
The rules had worked for years and the sudden stop came with the upgrade to OH 4.3.
Rearranging the rules to multiple .rules files didn’t help, rebooting the RPI neither. All possible incompatibilities with time-formats were checked, Visual Studio Code with OH-extension running does not report any problems in the .rules files. The Event-Log doesn’t show any errors - but no rule execution is visible.
So I suppose there might be a general issue with making my rules not fire.
Exemple rule:
rule “MusicCastAn”
when
Item GF_LivingRoom_MusicCast changed from OFF to ON
then
GF_LivingRoom_Stereo.sendCommand(ON)
end
The corresponding Eventlog entries are:
2024-12-29 13:26:15.567 [INFO ] [openhab.event.ItemCommandEvent ] - Item ‘GF_LivingRoom_MusicCast’ received command ON
2024-12-29 13:26:15.570 [INFO ] [penhab.event.ItemStatePredictedEvent] - Item ‘GF_LivingRoom_MusicCast’ predicted to become ON
2024-12-29 13:26:15.574 [INFO ] [openhab.event.ItemStateChangedEvent ] - Item ‘GF_LivingRoom_MusicCast’ changed from OFF to ON