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