Davis documentation gives the VP resend code as hex 21, but it's actually decimal 21. Changed to reflect reality.

This commit is contained in:
Tom Keffer
2012-01-10 18:56:47 +00:00
parent 1c89e0e0fe
commit 9904e46b03

View File

@@ -23,7 +23,7 @@ import weewx.wxformulas
# A few handy constants:
_ack = chr(0x06)
_resend = chr(0x21)
_resend = chr(0x15) # NB: The Davis documentation gives this code as 0x21, but it's actually decimal 21
class BaseWrapper(object):
"""Base class for (Serial|Ethernet)Wrapper"""