From ab760ee280b7458aa900c07fd15fc22d1ea35cd2 Mon Sep 17 00:00:00 2001 From: Tom Keffer Date: Thu, 4 Oct 2012 15:24:16 +0000 Subject: [PATCH] Send command START on start up. --- bin/weewx/VantagePro.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/bin/weewx/VantagePro.py b/bin/weewx/VantagePro.py index 8f808191..ed9acdca 100644 --- a/bin/weewx/VantagePro.py +++ b/bin/weewx/VantagePro.py @@ -379,6 +379,9 @@ class Vantage(weewx.abstractstation.AbstractStation): # Read the EEPROM and fill in properties in this instance self._setup() + # Make sure the logger is started: + self.port.send_command("START\n") + def openPort(self): """Open up the connection to the console""" self.port.openPort()