homebridge-denon-marantz-avr
homebridge-denon-marantz-avr copied to clipboard
Setting the input source
Is it possible to add the possibility of choosing the source input ?
The default input function was removed with the last update. It is planned that the new TV functions will be integrated. This will also make it possible to select an input.
hey stfnhmpir, are you still looking forward to implement the tv functions so we will be able to select input source?
Best regards
Yes, i do. But unfortunately I don't have the time at the moment.
I'm also, very, interested in this! being able to switch the input would be so useful!
tho, I can't even get this thing to run yet... #29
in case anybody else is interested, i figured out how to do this using HTTP-switch!
here's the config:
{ "accessory": "HTTP-SWITCH",
"name": "Theater to XBox",
"switchType": "stateless",
"timeout": 100,
"onUrl": "http://192.168.1.39:8080/goform/formiPhoneAppDirect.xml?SIGAME"
},
{ "accessory": "HTTP-SWITCH",
"name": "Theater to TV",
"switchType": "stateless",
"timeout": 100,
"onUrl": "http://192.168.1.39:8080/goform/formiPhoneAppDirect.xml?SITV"
},
{ "accessory": "HTTP-SWITCH",
"name": "Theater to PS4",
"switchType": "stateless",
"timeout": 100,
"onUrl": "http://192.168.1.39:8080/goform/formiPhoneAppDirect.xml?SIBD"
},
{ "accessory": "HTTP-SWITCH",
"name": "Theater to AUXILLARY",
"switchType": "stateless",
"timeout": 100,
"onUrl": "http://192.168.1.39:8080/goform/formiPhoneAppDirect.xml?SIAUX1"
there are more calls you can find online. these are the main ones I needed.
enjoy!
@mreassassin Thank you! that really helps!
For those interested, I've extended the HTTP-SWITCH suggestion above using a simple-http-telnet-bridge. This let's you both send commands and also poll for status. Let me know your thoughts.