add (working) dirk.pl + other bits
[dweather.git] / DWeather / lib / DWeather / Vantage.pm
diff --git a/DWeather/lib/DWeather/Vantage.pm b/DWeather/lib/DWeather/Vantage.pm
deleted file mode 100644 (file)
index 54cbb4a..0000000
+++ /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
-{
-
-}