According https://docs.openhab.org/addons/bindings/harmonyhub/readme.html hub can trigger events on activityStarting channel and activityStarted channel - I want to have a rule such that when Watch TV activity started I want to turn off lights, but seems like neither activityStarting nor activityStarted is getting triggered.
Is that supposed to work or the only way to do what I want is to ‘wait’ for currentActivity to change value?
rule “TV started”
when
Channel “harmonyhub:hub:HarmonyHub:activityStarted” triggered Watch_TV
then
logInfo(“Harmony”, “TV is started”)
end