wip
[dweather.git] / DWeather / lib / DWeather.pm
1 package DWeather;
2
3 use 5.008001;
4 use strict;
5 use warnings;
6
7 require Exporter;
8 use AutoLoader qw(AUTOLOAD);
9
10 our @ISA = qw(Exporter);
11
12 our $VERSION = '0.01';
13
14 use DWeather::Logger;
15 use DWeather::Debug;
16 use DWeather::Serial;
17
18 # Preloaded methods go here.
19
20 # Autoload methods go after =cut, and are processed by the autosplit program.
21
22 1;
23 __END__
24 # Below is stub documentation for your module. You'd better edit it!
25
26 =head1 NAME
27
28 DWeather - A Distributed Weather Station
29
30 =head1 SYNOPSIS
31
32   use DWeather;
33
34 =head1 DESCRIPTION
35
36 This is a distributed weather station that takes data from various weather
37 station hardware (such as Davis VantagePro 2) and allows one to distribute
38 a normalised form of that data around more than one place and then display
39 it, hopefully nicely, in a web browser from a builtin web server.
40
41 =head2 EXPORT
42
43 None.
44
45 =head1 SEE ALSO
46
47 Davis Vantage documentation: L<http://www.davisnet.com/support/weather/downloads/software_direct.asp?SoftCat=4&SoftwareID=172>
48 and L<http://www.davisnet.com/support/weather/downloads/software_direct.asp?SoftCat=4&SoftwareID=40>
49
50 =head1 AUTHOR
51
52 Dirk Koopman, E<lt>djk@tobit.co.ukE<gt>
53
54 =head1 COPYRIGHT AND LICENSE
55
56 Copyright (C) 2012 by Dirk Koopman
57
58 This library is free software; you can redistribute it and/or modify
59 it under the same terms as Perl itself, either Perl version 5.12.4 or,
60 at your option, any later version of Perl 5 you may have available.
61
62
63 =cut