X-Git-Url: http://dxcluster.net/gitweb/gitweb.cgi?a=blobdiff_plain;f=DWeather%2Flib%2FDWeather%2FVantage.pm;fp=DWeather%2Flib%2FDWeather%2FVantage.pm;h=0000000000000000000000000000000000000000;hb=4f77e5fc357ae3bce202fe32fe4a5333aa1ee446;hp=54cbb4a46521c16eb925597f12717e550bdc3081;hpb=631bc0f2b224c9ebfd1dd5827814e5aba3e6d023;p=dweather.git diff --git a/DWeather/lib/DWeather/Vantage.pm b/DWeather/lib/DWeather/Vantage.pm deleted file mode 100644 index 54cbb4a..0000000 --- a/DWeather/lib/DWeather/Vantage.pm +++ /dev/null @@ -1,30 +0,0 @@ -# -# Vantage Pro 2 interface for DWeather -# -# - -use strict; -use warnings; - -use base qw(DWeather::Serial); -use AnyEvent; - -sub new -{ - my $pkg = shift; - my $class = ref $pkg || $pkg; - my $device = shift || '/dev/ttyS0'; - - my $self = $class->SUPER::new($device, 19200); - return $self; -} - -sub send -{ - -} - -sub run -{ - -}