wip
[dweather.git] / DWeather / lib / DWeather / Station / Vantage.pm
diff --git a/DWeather/lib/DWeather/Station/Vantage.pm b/DWeather/lib/DWeather/Station/Vantage.pm
new file mode 100644 (file)
index 0000000..5f3749e
--- /dev/null
@@ -0,0 +1,35 @@
+#
+# Vantage Pro 2 interface for DWeather
+#
+#
+
+package DWeather::Station::Vantage;
+
+use strict;
+use warnings;
+
+use base qw(DWeather::Station);
+use DWeather::Debug;
+use AnyEvent;
+
+sub new
+{
+       my $pkg = shift;
+       my $class = ref $pkg || $pkg;
+       my $device = shift;
+       
+       my $d = $class->SUPER::new($device, 19200);
+       return $d;
+}
+
+sub reset
+{
+
+}
+
+sub poll
+{
+
+}
+
+1;