Open 1iveowl opened 6 years ago
Hello 1liveowl,
The library has no functions to control power state or volume of Zones at this time. Adding the support for zone control should be straightforward, if you choose to do so, I would certainly appreciate your PR. I believe you are correct to assume that much of the protocol is common among the models.
The serial codes can be found @ https://www.pioneerelectronics.com/PUSA/Support/Home-Entertainment-Custom-Install/RS-232+&+IP+Codes/A+V+Receivers
cheers,
On Tue, Oct 16, 2018 at 7:23 AM 1iveowl notifications@github.com wrote:
Will this library also support on/off of Zones and volume of zones? If not, where did you get the details, I might do a PR and add these capabilities.
I have a Pioneer VSX-924, but I assume that the protocol used is pretty much the same.
— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/RaysceneNS/Pioneer-Receiver-Controller/issues/1, or mute the thread https://github.com/notifications/unsubscribe-auth/APpaMYW6r389he19foa7EPD3RmWAdu8Gks5uld25gaJpZM4XeWMz .
-- Racine Ennis racine.ennis@gmail.com 403-479-2913 https://racineennis.ca/
I looked briefly at your code. Looks like you are connecting using a serial connection rather than over the network?
I guess, it would make sense to abstract the connection layer from the protocol layer as the protocol is independent from the connection.
That's correct, my SC-05 in particular only has an RS232 port for control. I agree that splitting the connection from the protocol would be the best way to add IP support to the library, that of course would be a large undertaking, and I couldn't offer assistance without having the hardware to communicate with.
On Tue, Oct 16, 2018 at 7:43 AM 1iveowl notifications@github.com wrote:
I looked briefly at your code. Looks like you are connecting using a serial connection rather than over the network?
I guess, it would make sense to abstract the connection layer from the protocol layer as the protocol is independent from the connection.
— You are receiving this because you commented. Reply to this email directly, view it on GitHub https://github.com/RaysceneNS/Pioneer-Receiver-Controller/issues/1#issuecomment-430242512, or mute the thread https://github.com/notifications/unsubscribe-auth/APpaMY8QbG1R1yPS_iXgsfl1OoqRcmLkks5uleKLgaJpZM4XeWMz .
-- Racine Ennis racine.ennis@gmail.com 403-479-2913 https://racineennis.ca/
I decided to approach this a bit differently and created a new library. PioneerReceiverControl.Rx
Will this library also support on/off of Zones and volume of zones? If not, where did you get the details, I might do a PR and add these capabilities.
I found this and are wondering if it is the same: A/V Receiver Control Commands List - Pioneer Electronics
I have a Pioneer VSX-924, but I assume that the protocol used is pretty much the same.