NAME

Roku::DVP::Remote - Module for interfacing with your Roku DVP.

SYNOPSIS

use Roku::DVP::Remote;

my $roku = Roku::DVP::Remote->new( '192.168.1.101' );

my $response = $Roku->keypress('Home');

die "failed to go Home"
    if $response !~ m{ OK }xms;

DESCRIPTION

Use this module to write programs which interact with your Roku DVP.

Check the example directory for the remote.pl which uses XUL::Gui to make a neat Roku remote you can run anywhere you like.

AUTHOR

Dylan Doxey, <dylan.doxey@gmail.com>

COPYRIGHT AND LICENSE

Copyright (C) 2011 by Dylan Doxey

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.10.1 or, at your option, any later version of Perl 5 you may have available.