| Device::Kiln - Graph kiln firing use Data logged from Device::DSE::Q1573 |
Device::Kiln - Graph kiln firing use Data logged from Device::DSE::Q1573
use Device::DSE::Q1573::Plotter; my $meter = Device::DSE::Q1573::Plotter->new("/dev/ttyS0");
Sets up a connection to a DSE Q1573 or Metex ME-22 Digital Multimeter, and allows then plots data to a png file at regular intervals. =head1 USAGE
Usage : my $meter=Device::DSE::Q1573::Plotter->new("/dev/ttyS0") Purpose : Opens the meter on the specified serial port Returns : object of type Device::DSE::Q1573::Plotter Argument : serial port =head2 rawread();
Usage : my $meter->rawread() Purpose : Returns the raw 14 byte string from the meter. =head1 EXAMPLE
use Device::DSE::Q1573;
my $meter = Device::DSE::Q1573::Plotter->new( "/dev/ttyS0" );
while(1) {
my $data = $meter->read();
print $data . "\n";
sleep(1);
}
David Peters
CPAN ID: DAVIDP
davidp@electronf.com
http://www.electronf.com
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
The full text of the license can be found in the LICENSE file included with this module.
perl(1).
| Device::Kiln - Graph kiln firing use Data logged from Device::DSE::Q1573 |