You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi @foxriver76 :
The Denon receiver normally does not allow to set the state of the center speaker through the API. But this (at least for me) is a very common thing I want to change (center OFF for music, center set to LARGE/SMALL for movies).
This can be done using the receiver website and click the respective radio buttons. Of course this is very time consuming.
I found a way to change the center state directly via a curl request:
curl -d "setPureDirectOn=OFF&setSetupLock=OFF&radioSpConfigFr=Large&radioSpConfigC=Small&radioSpConfigSw=No&radioSpConfigSrA=Small" -H "Content-Type: application/x-www-form-urlencoded" -X POST http://die.IP.vom.Denon/SETUP/SPEAKERS/SPEAKERCONFIG/s_speakersetup.asp
The upper code sets the Center Speaker to SMALL (LARGE of course also works).
curl -d "setPureDirectOn=OFF&setSetupLock=OFF&radioSpConfigFr=Large&radioSpConfigC=None&radioSpConfigSw=No&radioSpConfigSrA=Small" -H "Content-Type: application/x-www-form-urlencoded" -X POST http://die.IP.vom.Denon/SETUP/SPEAKERS/SPEAKERCONFIG/s_speakersetup.asp
This sets the Center Speaker to "None". Relevant is the "radioSpConfigC" part of the code.
Would it be possible to add this to the adapter so that an object in iobroker is shown that you can set to SMALL, LARGE or NONE? I think this might help alot of people to better use their receiver.
Thanks in advance!
Jan
The text was updated successfully, but these errors were encountered:
Hi @foxriver76 :
The Denon receiver normally does not allow to set the state of the center speaker through the API. But this (at least for me) is a very common thing I want to change (center OFF for music, center set to LARGE/SMALL for movies).
This can be done using the receiver website and click the respective radio buttons. Of course this is very time consuming.
I found a way to change the center state directly via a curl request:
curl -d "setPureDirectOn=OFF&setSetupLock=OFF&radioSpConfigFr=Large&radioSpConfigC=Small&radioSpConfigSw=No&radioSpConfigSrA=Small" -H "Content-Type: application/x-www-form-urlencoded" -X POST http://die.IP.vom.Denon/SETUP/SPEAKERS/SPEAKERCONFIG/s_speakersetup.asp
The upper code sets the Center Speaker to SMALL (LARGE of course also works).
curl -d "setPureDirectOn=OFF&setSetupLock=OFF&radioSpConfigFr=Large&radioSpConfigC=None&radioSpConfigSw=No&radioSpConfigSrA=Small" -H "Content-Type: application/x-www-form-urlencoded" -X POST http://die.IP.vom.Denon/SETUP/SPEAKERS/SPEAKERCONFIG/s_speakersetup.asp
This sets the Center Speaker to "None". Relevant is the "radioSpConfigC" part of the code.
Would it be possible to add this to the adapter so that an object in iobroker is shown that you can set to SMALL, LARGE or NONE? I think this might help alot of people to better use their receiver.
Thanks in advance!
Jan
The text was updated successfully, but these errors were encountered: