5f3749ee2b3c31d7f4ffd0df862c0240f9eacd41
[dweather.git] / DWeather / lib / DWeather / Station / Vantage.pm
1 #
2 # Vantage Pro 2 interface for DWeather
3 #
4 #
5
6 package DWeather::Station::Vantage;
7
8 use strict;
9 use warnings;
10
11 use base qw(DWeather::Station);
12 use DWeather::Debug;
13 use AnyEvent;
14
15 sub new
16 {
17         my $pkg = shift;
18         my $class = ref $pkg || $pkg;
19         my $device = shift;
20         
21         my $d = $class->SUPER::new($device, 19200);
22         return $d;
23 }
24
25 sub reset
26 {
27
28 }
29
30 sub poll
31 {
32
33 }
34
35 1;