Apr 28 2009

Roku Remote Update 1.5

roku15

After posting about my initial script for controlling the Roku Digital Video Player, ProdigiousJuggalo and eri3k from the roku forums took up the torch and added some really nice functions and UI enhancements. Thanks guys!

The screen shot to the left is the new interface. The latest version of the script can be downloaded by  clicking  here.

Some of the changes include function for rebooting beta firmwares, changing bit rate, saving IP information, and a much better UI.

It’s possible I might put something together to control the roku from the iPhone, eg. roku soundbridge and boxee,  if someone doesn’t beat me to it in the next week or two.


Apr 23 2009

Roku Remote Control Script

rokuremote

Hooray for necessity. My Roku digital video player remote controller stopped working yesterday. While it’s pretty cheap to replace I needed to find something I could use in the interim. Since the device will let you telnet to port 8080 and feed in remote commands, my first attempt was to use setup a few bash aliases using netcat like so:

alias ru='echo "press up" | nc -n $rokuIP 8080'
alias rd='echo "press down" | nc -n $rokuIP 8080'
alias rl='echo "press left" | nc -n $rokuIP 8080'



You get the idea. However this got tedious fairly quick and the idea of explaining the use of netcat or telnet to my wife seems frightening.

Instead of living in fear I put together a script using Autoit. Now the Mrs . and I have a  UI that resembles the remote we’re waiting for.  It’s pretty basic and self explanatory. Just enter in the appropriate IP of the device and start using.

You can grab the script and compiled .exe by clicking here.