diff --git a/ChangeLog b/ChangeLog index 10d6341..f32e0b7 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,9 +1,15 @@ CHANGES ======= +v0.3.0 +------ + +* Take the pressure from pressure\_inHg + v0.2.0 ------ +* update for 0.2.0 * Fixed pep8 failures * Update to aprsd 3.0.0 and include config options! * don't dump the whole packet diff --git a/aprsd_weewx_plugin/weewx.py b/aprsd_weewx_plugin/weewx.py index 762e20e..623cc44 100644 --- a/aprsd_weewx_plugin/weewx.py +++ b/aprsd_weewx_plugin/weewx.py @@ -317,9 +317,8 @@ class WeewxWXAPRSThread(threads.APRSDThread): rain_last_24_hrs = float(wx_data.get("rain24_in", 0.00)) rain_since_midnight = float(wx_data.get("day_Rain_in", 0.00)) humidity = float(wx_data.get("outHumidity", 0.00)) - # * 330.863886667 - # inHg * 33.8639 = mBar - pressure = float(wx_data.get("pressure_inHg", 0.00)) * 33.8639 + # inHg * 330.863886667 = mBar + pressure = float(wx_data.get("pressure_inHg", 0.00)) * 330.863886667 return aprsd.packets.WeatherPacket( from_call=self.callsign, to_call="APRS",