We have an Onkyo HT-R695, according to some device info it's also called TX NR656.
First tried to control it using the EISCP home assistant way, but failed in every option.
Then discovered NodeRed.
With NR i can control the HDMI input through the 'Input Selector',
except choosing the strm-box hdmi input.
The way i got it working....:
- Event state change: when triggering helper button in HA (home assistant)
-
Function node: which defines the command to send
msg.payload = "input-selector=cd"
return msg; - Eiscp node: to send to the Onkyo
Got this working for most of the used HDMI inputs, except the strm-box.
Accordingly to documentation i should type "input-selector=strm-box" but that gives errors.
Tried some other things....str-box, strmbox, etc.... nothing works
At last, i've set up an Onkyo output with debug and on using remote for input strm-box, i got:
{"command":"input-selector","iscp_command":"SLI11","host":"192.168.1.4","port":"60128","model":"HTR 695"}
or uncollapsed
object
command: "input-selector"
iscp_command: "SLI11"
host: "192.168.1.4"
port: "60128"
model: "HTR 695"
Following this info, i tried to send the command
"input-selector=strm-box"
but then i got different errors
Anyone with a solution to my problem?