Thread Konsolenbefehl als Subroutine (Substitution)
(5 answers)
Opened by JuMi2006 at 2012-09-21 10:37
Die Übertragung war nicht ganz korrekt, und du hast ein paar Tippfehler gemacht.
Code (perl): (dl
)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 my $usb = '/dev/ttyUSB-1-4'; my $command = '0015070400a4'; die("Error run 'send' ($!)") unless( send($usb, $command) ); sub send { my $usb = shift; my $raw = shift; $raw =~ s/([0-9a-f]{2})/chr( hex( $1 ) )/gie; open(my $fh,'|-',"socat -t1 - $usb,b2400") or return 0; binmode( $fh ); print $fh $raw; close( $fh ) or return 0; return 1; } |