Driver Releases

More
2 years 4 months ago #1655 by randyf
Replied by randyf on topic Driver Releases
How about a driver for the HTD Lync whole house audio system.

I have some docs that have info on their RS232 interface.  There's also some work done with Python scripts for home assistant here:  github.com/UngluedChalice/htd-lync12-home-assistant and someone else did something with Python as well:  github.com/qguernsey/Lync12

 

Please Log in to join the conversation.

More
2 years 4 months ago #1656 by PhoenixF15E
Replied by PhoenixF15E on topic Driver Releases

Kodi would be a good one for a lot of people I expect.

Andrew
and Plex
A second vote for Plex!

Kyle

Please Log in to join the conversation.

More
2 years 4 months ago #1658 by PhoenixF15E
Replied by PhoenixF15E on topic Driver Releases
Pioneer receivers would likely be helpful for many.  I have a VSX-1124, but I suspect the control language hasn't changed too much and would work on many other models.

Kyle 

Link to Pioneer VSX-1124 spreadsheet
Link to AVR control webpage

Please Log in to join the conversation.

More
2 years 4 months ago #1660 by RxJoshRx
Replied by RxJoshRx on topic Driver Releases
Yamaha AVR driver would be great. Running everything through IR right now and have to be careful when we hold the volume up/down too long- after we release sometimes it will continue on for another 5-10 units. 😬

Please Log in to join the conversation.

More
2 years 4 months ago #1661 by kirky27
Replied by kirky27 on topic Driver Releases
I notice there is no discover button for the Oppo driver

Please Log in to join the conversation.

More
2 years 4 months ago - 2 years 4 months ago #1667 by andrew
Replied by andrew on topic Driver Releases

Yamaha AVR driver would be great. Running everything through IR right now and have to be careful when we hold the volume up/down too long- after we release sometimes it will continue on for another 5-10 units. 😬
I guess first make sure that you haven't got long-press on your volume keys defined to run a loop of 10 as they were originally in the smart remote sample. Then you could try using the IP control protocol documented here github.com/nicko88/HTWebRemote/blob/mast...ents/Yamaha_YNCA.pdf and here  github.com/nicko88/HTWebRemote/blob/mast.../Yamaha_Commands.txt and see if that's better.

Make sure netcat (nc) is installed on your myServer box then cook up some scripts that contain nc commands such as these:
Code:
allonis@myserver-360:~ $ echo "@SYS:PWR=On" | nc -w 1 -C yamaha-amp 50000 @MAIN:PWR=On @MAIN:AVAIL=Ready @MAIN:INP=HDMI2 @MAIN:MUTE=Off @MAIN:PUREDIRMODE=Off @MAIN:SOUNDPRG=Surround Decoder @MAIN:STRAIGHT=Off @MAIN:VOL=-32.0 @ZONE2:PWR=On @ZONE2:AVAIL=Ready @ZONE2:INP=AUDIO1 @ZONE2:MUTE=Off @ZONE2:VOL=2.5 @SYS:PWR=On @SYS:DMCCONTROL=Enable @SYS:HDMIOUT1=On @MAIN:VOL=-40.0 allonis@myserver-360:~ $ echo "@MAIN:VOL=?" | nc -w 1 -C yamaha-amp 50000 @MAIN:VOL=-40.0 allonis@myserver-360:~ $ echo "@MAIN:VOL=Up 1 dB" | nc -w 1 -C yamaha-amp 50000 @MAIN:VOL=-39.0 allonis@myserver-360:~ $ echo "@MAIN:VOL=Down 1 dB" | nc -w 1 -C yamaha-amp 50000 @MAIN:VOL=-40.0 allonis@myserver-360:~ $ echo "@MAIN:VOL=Down 5 dB" | nc -w 1 -C yamaha-amp 50000 @MAIN:VOL=-45.0 allonis@myserver-360:~ $ echo "@MAIN:VOL=Up" | nc -w 1 -C yamaha-amp 50000 @MAIN:VOL=-44.5 allonis@myserver-360:~ $ echo "@SYS:PWR=Standby" | nc -w 1 -C yamaha-amp 50000

For instance have a "vol-up.sh" script that contains:
Code:
echo "@MAIN:VOL=Up 1 dB" | nc -w 1 -C yamaha-amp 50000

Then have your volume up key run that script on the server.

Note - I haven't tried this so running a script each time might be too slow, or it might not be a good idea for another reason.

You might even be able to do this directly in myServer using the SendTCP command but each message string has to end with 0x0d 0x0a line ending and I don't know if you can specify that.

Andrew
Last edit: 2 years 4 months ago by andrew.
The following user(s) said Thank You: RxJoshRx

Please Log in to join the conversation.

Time to create page: 0.205 seconds