• Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Register
  • Login
TRIGGERcmd
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Register
  • Login

Yamaha Amps Raspberry and RXV

Raspberry Pi
1
1
854
Loading More Posts
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • A
    Atmosphere
    last edited by Jan 2, 2019, 9:12 AM

    I'm using a raspberry with a Yamaha RX-V671 amp connected on my network

    Link to install on raspberry Pi:
    https://github.com/wuub/rxv

    Example Python Script:

    #!/usr/bin/python
    import rxv

    receivers = [rxv.RXV("http://192.168.1.32:80/YamahaRemoteControl/ctrl", "RX-V671")]
    rx = receivers[0]
    rx.volume = rx.volume + 10
    print rx.volume

    Switch on AMP
    #!/usr/bin/python
    import rxv

    receivers = [rxv.RXV("http://192.168.1.32:80/YamahaRemoteControl/ctrl", "RX-V671")]
    rx = receivers[0]

    rx.on = True
    rx.input = "HDMI3"
    rx.volume = -30

    Amp Off
    #!/usr/bin/python
    import rxv

    receivers = [rxv.RXV("http://192.168.1.32:80/YamahaRemoteControl/ctrl", "RX-V671")]
    rx = receivers[0]

    rx.input = "HDMI2"
    rx.on = False

    1 Reply Last reply Reply Quote 0
    1 out of 1
    • First post
      1/1
      Last post