#!/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 = 'ampDenon'; # max 8 chars $class_id = 'media'; # max 8 chars $separator = '-' x 80; $indent = ' ' x 2; #------------------------------------------------------------------------------- # global variables # my %configuration; $configuration{serialPort} = 'loungeAmp'; ################################################################################ # Input arguments # use Getopt::Std; my %opts; getopts('hvn:s:t:w:', \%opts); die("\n". "Usage: $0 [options]\n". "\n". "Options:\n". "${indent}-h display this help message\n". "${indent}-v verbose\n". "${indent}-n id the instance id (max. 12 chars)\n". "${indent}-s str the serial port xPL client name\n". "${indent}-t mins the heartbeat interval in minutes\n". "${indent}-w secs the startup sleep interval\n". "\n". "Controls a Denon AVR audio/video controller via its serial port.\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{serialPort} = $opts{'s'} || $configuration{serialPort}; my $serial_port_id = "$vendor_id-serPort.$configuration{serialPort}"; ################################################################################ # Internal functions # #------------------------------------------------------------------------------- # convert master volume (1 to 100) to AVR representation (0 to 99, dB) # sub master_volume_to_AVR { my ($volume) = @_; # calculate value my $AVR_volume = sprintf('%02d', $volume-1); return($AVR_volume) } #------------------------------------------------------------------------------- # convert AVR volume (0 to 99, dB) to xPL audio (1 to 100) # sub master_volume_from_AVR { my ($AVR_volume) = @_; # calculate value my $volume = $AVR_volume+1; return($volume) } #------------------------------------------------------------------------------- # Translate a command to the corresponding crontrols for the serial port client # sub build_amplifier_control { my (%body) = @_; my @commands = (); # interpret commands foreach $control (keys(%body)) { my $value = lc($body{$control}); $value =~ s/tv\Z/TV\/CBL/; $value =~ s/aux/V.AUX/; $value =~ s/net\Z/NET\/USB/; $value =~ s/\ausb/NET\/USB/; $value =~ s/pure\Z/PURE DIRECT/i; $value =~ s/dolby\Z/DOLBY DIGITAL/i; $value =~ s/dts\Z/DTS SURROUND/i; $value =~ s/wide\Z/WIDE SCREEN/i; $value =~ s/7ch\Z/7CH STEREO/i; $value =~ s/rock\Z/ROCK ARENA/i; $value =~ s/jazz\Z/JAZZ CLUB/i; $value =~ s/classic\Z/CLASSIC CONCERT/i; $value =~ s/mono\Z/MONO MOVIE/i; #print "$control -> \"$value\"\n"; # power if ($control eq 'power') { if ($value eq 'on') { push(@commands, 'PWON'); } elsif ($value eq 'off') { push(@commands, 'PWSTANDBY'); } elsif ($value eq 'ask') { push(@commands, 'PW?'); } } # mute if ($control eq 'mute') { if ($value eq 'on') { push(@commands, 'MUON'); } elsif ($value eq 'off') { push(@commands, 'MUOFF'); } elsif ($value eq 'ask') { push(@commands, 'MU?'); } } # volume if ($control eq 'volume') { if ($value =~ m/\d+/) { push(@commands, 'MV' . master_volume_to_AVR($value)); } elsif ($value eq 'ask') { push(@commands, 'MV?'); } } # audio input if ($control eq 'audio') { if ($value eq 'ask') { push(@commands, 'SI?'); } else { push(@commands, 'SI' . uc($value)); } } # video input if ($control eq 'video') { if ($value eq 'ask') { push(@commands, 'SV?'); } else { push(@commands, 'SV' . uc($value)); } } # surround if ($control eq 'surround') { if ($value eq 'ask') { push(@commands, 'MS?'); } else { push(@commands, 'MS' . uc($value)); } } } return(@commands) } #------------------------------------------------------------------------------- # Translate a serial port message to the corresponding status # sub build_status { my ($message) = @_; my %status = (); # power if ($message eq 'PWSTANDBY') { %status = (power => 'off'); } elsif ($message eq 'PWON') { %status = (power => 'on'); } # mute elsif ($message eq 'MUOFF') { %status = (mute => 'off'); } elsif ($message eq 'MUON') { %status = (mute => 'on'); } # volume elsif ($message =~ m/\Amv\d+/i) { my $volume = $message; $volume =~ s/\Amv//i; if ($volume !~ m /vmax/i) { %status = (volume => master_volume_from_AVR($volume)); } } # audio input elsif ($message =~ m/\Asi/i) { my $input = lc($message); $input =~ s/\Asi//; %status = (audio => $input); } # video input elsif ($message =~ m/\Asv/i) { my $input = lc($message); $input =~ s/\Asv//; %status = (video => $input); } # surround elsif ($message =~ m/\Ams/i) { my $input = lc($message); $input =~ s/\Ams//; $input =~ s/\s/_/g; %status = (surround => $input); } return(%status) } ################################################################################ # 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("Controlling a Denon amplifier via serial port xPL client \"$configuration{serialPort}\".\n"); print($indent . "class id: $class_id\n"); print($indent . "instance id: $instance_id\n"); print($indent . "serial port: $serial_port_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_amplifier_control(%body); if (@commands ne ()) { foreach $command (@commands) { if ($verbose == 1) { print $indent, "sending $command\n"; } xpl_send_message( $xpl_socket, $xpl_port, 'xpl-cmnd', $xpl_id, $serial_port_id, 'serPort.basic', ('command' => $command) ); } } } } # process replies if ($schema eq "serport.response") { if ($source eq $serial_port_id) { my $status = $body{status}; if ($verbose == 1) { print "Received status $status\n"; } my %body = build_status($status); if (%body) { xpl_send_message( $xpl_socket, $xpl_port, 'xpl-trig', $xpl_id, '*', "$class_id.status", %body ); } } } } } } xpl_disconnect($xpl_socket, $xpl_id, $xpl_ip, $client_port); ################################################################################ # Documentation (access it with: perldoc ) # __END__ =head1 NAME xpl-avController-DenonAVR-serial.pl - Controls a Denon AV5103 audio/video controller via its serial port =head1 SYNOPSIS xpl-avController-DenonAVR.pl [options] =head1 DESCRIPTION This xPL client sends commands to an C in order to control a Denon AV5103 audio/video controller. The C commands allow to control following items: =over 8 =item B Can have C, C or C. =item B Can have C, C or C. =item B Should have C: decimal value between 0 and 100 or C. =item B =item B =item B =back =head1 OPTIONS =over 8 =item B<-h> Display a help message. =item B<-v> Be verbose. =item B<-p port> Specify the base port from which the client searches for a free port. If not specified, the client will take a default value. =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<-s str> Specify the C target's id. =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 SERIAL PORT CLIENT The C must be configured as: =over 8 =item B -e '\x0D' =item B baudrate 9600 databits 8 parity none stopbits 1 handshake none =back =head1 TEST Connect the amplifier to the PC's first serial port C. Make sure you have an C running on the machine. Start the serial port controller: C. Start the amplifier controller: C. Start C in another terminal window. Mute the amplifier: C. Unmute it: C. Check mute status: C Change audio source: C, or: C The amplifier should reflect the changes and the logger log. =head1 AUTHOR Francois Corthay, DSPC =head1 VERSION 2.0, 2012 =cut