#!/usr/bin/perl use FindBin; # find the script's directory use lib $FindBin::Bin; # add that directory to the library path use xPL::common; ################################################################################ # constants # $vendor_id = 'dspc'; # from xplproject.org $device_id = 'screen'; # max 8 chars $class_id = 'screen'; # max 8 chars $separator = '-' x 80; $indent = ' ' x 2; #------------------------------------------------------------------------------- # global variables # my %configuration; $configuration{'command'} = '/home/control/Documents/Controls/bravia_console.py -c'; ################################################################################ # Input arguments # use Getopt::Std; my %opts; getopts('hvp:n:t:w:', \%opts); die("\n". "Usage: $0 [options]\n". "\n". "Options:\n". "${indent}-h display this help message\n". "${indent}-v verbose\n". "${indent}-p port the base UDP port\n". "${indent}-n id the instance id (max. 12 chars)\n". "${indent}-t mins the heartbeat interval in minutes\n". "${indent}-w secs the startup sleep interval\n". "${indent}-c scr the bravia console script invocation\n". "\n". "Controls a Panasonic plasma screen or projector.\n". "\n". "More information with: perldoc $0\n". "\n". "" ) if ($opts{h}); my $verbose = $opts{v}; my $client_base_port = $opts{'p'} || 50000; my $instance_id = $opts{'n'} || xpl_build_automatic_instance_id; my $heartbeat_interval = $opts{'t'} || 5; my $startup_sleep_time = $opts{'w'} || 0; $configuration{'command'} = $opts{'c'} || $configuration{'command'}; ################################################################################ # Internal functions # #------------------------------------------------------------------------------- # Translate a command to the corresponding crontrols for the serial port client # sub build_screen_control { my (%body) = @_; my @commands = (); # interpret commands foreach $control (keys(%body)) { my $value = lc($body{$control}); #print "$control -> \"$value\"\n"; # power if ($control eq 'power') { if ($value eq 'on') { push(@commands, 'tvpower'); } elsif ($value eq 'off') { push(@commands, 'poweroff'); } } # input source elsif ($control eq 'input') { if ($value =~ /hdmi\d/) { push(@commands, $value); } elsif ($value =~ /component\d/) { push(@commands, $value); } elsif ($value =~ /video\d/) { push(@commands, $value); } elsif ($value eq 'tv') { push(@commands, 'tv'); } } } return(@commands) } ################################################################################ # Catch control-C interrupt # $SIG{INT} = sub{ $xpl_end++ }; ################################################################################ # Main script # sleep($startup_sleep_time); # xPL parameters my $xpl_id = xpl_build_id($vendor_id, $device_id, $instance_id); my $xpl_ip = xpl_find_ip; # create xPL socket my ($client_port, $xpl_socket) = xpl_open_socket($xpl_port, $client_base_port); # display working parameters if ($verbose == 1) { system("clear"); print("$separator\n"); print("Controlling a Sony Bravia screen.\n"); print($indent . "class id: $class_id\n"); print($indent . "instance id: $instance_id\n"); print("\n"); } #------------------------------------------------------------------------------- # Main loop # my $timeout = 1; my $last_heartbeat_time = 0; while ( (defined($xpl_socket)) && ($xpl_end == 0) ) { # check time and send heartbeat $last_heartbeat_time = xpl_send_heartbeat( $xpl_socket, $xpl_id, $xpl_ip, $client_port, $heartbeat_interval, $last_heartbeat_time ); # get xpl-UDP message with timeout my ($xpl_message) = xpl_get_message($xpl_socket, $timeout); # process XPL message if ($xpl_message) { my ($type, $source, $target, $schema, %body) = xpl_get_message_elements($xpl_message); if ( xpl_is_for_me($xpl_id, $target) ) { # process commands if ($schema eq "$class_id.basic") { if ($type eq 'xpl-cmnd') { my $command = $body{'command'}; if ($verbose > 0) { print("\n"); print("Received command from \"$source\"\n"); } my @commands = build_screen_control(%body); if (@commands ne ()) { foreach $command (@commands) { if ($verbose == 1) { print $indent, "sending $command\n"; } system($configuration{'command'} . $command . '>/dev/null'); } } } } } } } xpl_disconnect($xpl_socket, $xpl_id, $xpl_ip, $client_port); ################################################################################ # Documentation (access it with: perldoc ) # __END__ =head1 NAME xpl-screen-bravia.pl - Controls a Sony Bravia screen =head1 SYNOPSIS xpl-screen-bravia.pl [options] =head1 DESCRIPTION This xPL client sends commands to an C in order to control a Sony Bravia screen. The C commands allow to control following items: =over 8 =item B Can be C or C. =item B Can be C, C, C or C. =back =head1 OPTIONS =over 8 =item B<-h> Display a help message. =item B<-v> Be verbose. =item B<-n id> Specify the instance id (name). The id is limited to 12 characters. If not specified, it is constructed from the host name and the serial port controller name. =item B<-c script> Specify the C script name with its path. =item B<-t mins> Specify the number of minutes between two heartbeat messages. =item B<-w secs> Specify the number of seconds before sending the first heartbeat. This allows to start the client after the hub, thus eliminating an prospective startup delay of one heartbeat interval. =back =head1 TEST Make sure you have an C running on the machine. Start the screen controller: C. Start C in another terminal window. Power the screen off with the remote control and launch the command C. The screen should power on. =head1 AUTHOR Francois Corthay, DSPC =head1 VERSION 2.0, 2018 =cut