Thread Zugriff auf Com Port Schnittstelle (Parallel) (12 answers)
Opened by Gast at 2006-10-12 16:27

Ispartali86
 2006-10-18 12:50
#70724 #70724
User since
2006-10-12
27 Artikel
BenutzerIn
[default_avatar]
Hallo nun habe ich das Modul installiert aber habe immer noch fehlermeldungen

Quote
Device::ParallelPort unabel to create driver auto (see Device::ParallelPort::drv::auto for further information) - Device::ParallelPort::drv::auto (auto detect) error
failed to load parport - Can't locate Device/ParallelPort/drv/parport.pm in @INC (@INC contains: /usr/lib/perl5/5.8.6/i586-linux-thread-multi /usr/lib/perl5/5.8.6 /usr/lib/perl5/site_perl/5.8.6/i586-linux-thread-multi /usr/lib/perl5/site_perl/5.8.6 /usr/lib/perl5/site_perl /usr/lib/perl5/vendor_perl/5.8.6/i586-linux-thread-multi /usr/lib/perl5/vendor_perl/5.8.6 /usr/lib/perl5/vendor_perl .) at (eval 2) line 2.
BEGIN failed--compilation aborted at (eval 2) line 2.
. Make sure you have loaded and installed Device::ParallelPort::drv::parport from CPAN. Install Device::ParallelPort::drv::(linux|parport|win32) and try again at (eval 1) line 3
at tcom.pl line 4


Das test-code habe ich von der CPAN seite übernommen.
Code: (dl )
1
2
3
4
5
6
7
8
9
#!/usr/bin/perl

use Device::ParallelPort;
my $port = Device::ParallelPort->new();
$port->set_bit(3,1);
print $port->get_bit(3) . "\n";

print ord($port->get_byte(0)) . "\n";
$port->set_byte(0, chr(255));


Was habe ich diesmal falsch gemacht, und wohin muss dieser Modul genau istalliert werden, ich hab es in den Ordner
Quote
linux:/usr/lib/perl5/5.8.6/ParallelPort/Device-ParallelPort-1.00 #
kopiert ist das Falsch?

View full thread Zugriff auf Com Port Schnittstelle (Parallel)