How to add the yamaha music cast on the bOS?
How to add the yamaha music cast on the bOS?
I have this av receiver : https://europe.yamaha.com/en/products/audio_visual/av_receivers_amps/rx-v6a/index.html
How to add the yamaha music cast on the bOS?
I have this av receiver : https://europe.yamaha.com/en/products/audio_visual/av_receivers_amps/rx-v6a/index.html
Dear Sir,
I have send mail to Yamaha to ask if there is an open API. Can you send and you to ask?
Hello,
If they have an open API, providing command lists for sending to the device, you could use our HTTP driver to send/receive commands to the device, if the open API isn't available (which it's not in this case, i think), the integration into bOS isn't possible.
Best regards.
I'll give you some basic commands:
http://<IP>/YamahaExtendedControl/v1/main/getStatus
http://<IP>/YamahaExtendedControl/v1/netusb/getPlayInfo
http://<IP>/YamahaExtendedControl/v1/main/setMute?enable=true
http://<IP>/YamahaExtendedControl/v1/main/setMute?enable=false
http://<IP>/YamahaExtendedControl/v1/main/setVolume?volume=up
http://<IP>/YamahaExtendedControl/v1/main/setVolume?volume=down
http://<IP>/YamahaExtendedControl/v1/main/setVolume?volume=up&step=5
http://<IP>/YamahaExtendedControl/v1/main/setVolume?volume=down&step=5
http://<IP>/YamahaExtendedControl/v1/main/setVolume?volume=15
http://<IP>/YamahaExtendedControl/v1/main/setPower?power=standby
http://<IP>/YamahaExtendedControl/v1/main/setPower?power=on
http://<IP>/YamahaExtendedControl/v1/main/setInput?input=spotify
http://<IP>/YamahaExtendedControl/v1/main/setInput?input=net_radio
http://<IP>/YamahaExtendedControl/v1/netusb/setPlayback?playback=next
http://<IP>/YamahaExtendedControl/v1/netusb/setPlayback?playback=previous
http://<IP>/YamahaExtendedControl/v1/netusb/setPlayback?playback=stop
http://<IP>/YamahaExtendedControl/v1/netusb/setPlayback?playback=play
http://<IP>/YamahaExtendedControl/v1/netusb/setPlayback?playback=pause
You're welcome :)