Skip to content

Commit

Permalink
Fix typo that causes phantom values of soilMoist3 with VantageVue
Browse files Browse the repository at this point in the history
  • Loading branch information
tkeffer committed Aug 31, 2024
1 parent 95210c4 commit 976e92a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions docs_src/changes.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
WeeWX change history
--------------------

### 5.2.0 MM/DD/YYYY

Fix typo that causes phantom values of `soilMoist3` to appear with VantageVue
stations.


### 5.1.0 07/04/2024

If option `lang` is a valid locale, then it will be used to change locale as
Expand Down
4 changes: 2 additions & 2 deletions src/weewx/drivers/vantage.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
log = logging.getLogger(__name__)

DRIVER_NAME = 'Vantage'
DRIVER_VERSION = '3.6.2'
DRIVER_VERSION = '3.6.3'

int2byte = struct.Struct(">B").pack

Expand Down Expand Up @@ -1790,7 +1790,7 @@ def _unpackArchivePacket(self, raw_archive_buffer):
'leafTemp1', 'leafTemp2', 'leafWet1', 'leafWet2',
'soilTemp1', 'soilTemp2', 'soilTemp3', 'soilTemp4',
'extraHumid1', 'extraHumid2', 'extraTemp1', 'extraTemp2', 'extraTemp3',
'soilMoist1', 'soilMoist2', 'soildMoist3', 'soilMoist4'
'soilMoist1', 'soilMoist2', 'soilMoist3', 'soilMoist4'
}


Expand Down

0 comments on commit 976e92a

Please sign in to comment.