I've been trying to talk to a scrolling LED display via the serial port using WIN32::SerialPort with varying degrees of success. Problem is I can't quite tell why/when/what.
first I tried:
use Win32::SerialPort qw( :STAT 0.19 );
my $PortObj = new Win32::SerialPort ("COM1") || die "Can't open COM1:
+$^E\n";
$PortObj->baudrate(9600);
$PortObj->parity("none");
$PortObj->databits(8);
$PortObj->stopbits(1);
$PortObj->write ("feed me");
$PortObj->close || die;
undef $PortObj;
which worked once or twice.
then I omitted setting any params which worked fine for a whole evening, now nothing works.
SerialPort seems to pick up the settings on its own with little trouble, and a light comes on on the device whenever I try and talk to it, it's just failing to write.
any thoughts?
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.