From: Dobrica Pavlinusic Date: Tue, 3 Aug 2010 10:56:28 +0000 (+0200) Subject: improve pod X-Git-Tag: RFID-Biblio-0.02~82 X-Git-Url: http://git.rot13.org/?p=Biblio-RFID.git;a=commitdiff_plain;h=36eeff455cade61d369d27ed2aab06ebd69b4641 improve pod --- diff --git a/lib/RFID/Biblio.pm b/lib/RFID/Biblio.pm index c7adf9e..29c06a9 100644 --- a/lib/RFID/Biblio.pm +++ b/lib/RFID/Biblio.pm @@ -11,7 +11,7 @@ use Data::Dump qw(dump); =head1 NAME -RFID::Biblio - support serial RFID devices +RFID::Biblio - easy to use API for writing RFID enabled appliaction =cut @@ -27,17 +27,21 @@ which is sutable for direct mapping to REST JSONP service. Perhaps a little code snippet. - use RFID::Biblio; + use RFID::Biblio; - my $rfid = RFID::Biblio->new( + my $rfid = RFID::Biblio->new( device => '/dev/ttyUSB0', # with fallback to RFID_DEVICE ); + + # invetory tags in reader range and read data from them my $visible = $rfid->scan; -=head1 SUBROUTINES/METHODS +=head1 METHODS =head2 new +Open serial port (if needed) and init reader + =cut sub new { @@ -110,7 +114,7 @@ sub scan { } -=head1 MANDATORY IMPLEMENTATIONS +=head1 READER IMPLEMENTATION Each reader must implement following hooks as sub-classes.