Skip to content

Commit

Permalink
Update Si1000.py
Browse files Browse the repository at this point in the history
updated from issue reported to tridge original branch
tridge#5

Humidity was not reporting until I changed 'humidity' to 'outHumidity' in Si1000.py driver. Now it's working.  Credit goes to github user: bhpost
  • Loading branch information
chrisgh1 authored Mar 1, 2018
1 parent 1a32591 commit 59c8a3d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion weewx/Si1000.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ def __init__(self, **stn_dict):
'wind_direction_degrees' : ('windDir', self.adjust_wind_direction),
'wind_speed_mph' : ('windSpeed', None),
'temperature_F' : ('outTemp', None),
'humidity_pct' : ('humidity', None),
'humidity_pct' : ('outHumidity', None),
'rain_spoons' : ('rain', self.convert_rain)
}

Expand Down

0 comments on commit 59c8a3d

Please # to comment.