another try

This commit is contained in:
Hemna 2023-04-20 16:14:57 -04:00
parent 6c1ae8202d
commit e4904f6d56
2 changed files with 8 additions and 2 deletions

View File

@ -1,6 +1,11 @@
CHANGES
=======
v0.3.1
------
* Updated pressure \* 10
v0.3.0
------

View File

@ -317,8 +317,9 @@ 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))
# inHg * 330.863886667 = mBar
pressure = float(wx_data.get("pressure_inHg", 0.00)) * 330.863886667
# * 330.863886667
# inHg * 33.8639 = mBar
pressure = float(wx_data.get("pressure_inHg", 0.00)) * 33.8639 * 10
return aprsd.packets.WeatherPacket(
from_call=self.callsign,
to_call="APRS",