dev-master
9999999-dev https://bitbucket.org/gordywills/receiver-controla single page app to remotely control my Pioneer VSX-930 receiver via telnet
MIT
The Requires
- php ^5.5 || ^7.0
- graze/telnet-client >=2.0.0
by Gordy Wills
a single page app to remotely control my Pioneer VSX-930 receiver via telnet
A web page built on top of the telnet API described in resources/VSX-1120-K-RS232.PDF. This page only impelments the power, volume and function selectors - that's all I needed. The remaining functionality could be easily implemented in the same style and I would welcome Pull Requests that do so. and a note of thanx to Raymond Julian for his article that gave me the idea Remote control your Pioneer VSX receiver over telnet., (*1)
1. Clone the Repo:, (*2)
$ git clone https://bitbucket.org/gordywills/receiver-control.git
2. run Composer Install, (*3)
$ composer install
3. run NPM Install, (*4)
$ npm install
4. copy config.ini.dist to config.ini and edit for the relevant telnet properties of your receiver., (*5)
$ cp config.ini.dist config.ini $ nano config.ini
;config for the reciever in use ;the ip address of your receiver, the default telnet port is 23 dsn="ip_address:telnet_port" ;the return prompt for your receiver - in the VSX-930 this is a zero length string prompt="" ;the error prompt for your receiver - in the VSX-930 this is a zero length string errorPrompt="" ;the return line ending for your receiver - in the VSX-930 this is a <CR><LF> windows style line ending lineEnding="\r\n"
5. Serve index.php from a webserver of your choice and navigate to it., (*6)
a single page app to remotely control my Pioneer VSX-930 receiver via telnet
MIT