Problem: switch on a few lights when TV is paused/stopped and dim again when continuing watching.
I am using NEEO as a remote for my TV/audio equipment. Thanks to @tmrobert8 excellent binding (see forum), I can now do that automatically when I push play/pause buttons.
Something similar should be possible with a Harmony.
I have one item Scene_TV
that is made visible as a switch on my NEEO remote, using the NEEO transport from @tmrobert8. I currently switch on the scene manually. This could of course be automated.
Here is the rule to make this work:
rule "NEEO"
when
Channel 'neeo:brain:d487672e:forwardActions' triggered
then
var data = receivedEvent.getEvent()
logInfo("neeo", "action received: {}", data)
var String action = transform("JSONPATH", "$.action", data)
var String device = transform("JSONPATH", "$.device", data)
var String room = transform("JSONPATH", "$.room", data)
var String actionparameter = transform("JSONPATH", "$.actionparameter", data)
logDebug("neeo", "action: {}, device: {}, room: {}, actionparameter: {}", action, device, room, actionparameter)
if (((device == "TV") || (device == "Blu-ray") || (device == "Mediaplayer")) && (Scene_TV.state == ON)) {
if (action == "PLAY") {
Licht_Zithoek_Staanlamp.postUpdate(ON)
Licht_Zithoek.postUpdate(20)
} else if ((action == "STOP") || (action == "PAUSE")) {
Licht_Zithoek.postUpdate(70)
}
return
}
end