mirror of
https://github.com/hemna/aprsd-weewx-plugin.git
synced 2024-12-11 17:35:45 -05:00
Updated pressure * 10
This commit is contained in:
parent
1da5037f49
commit
6c1ae8202d
@ -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
|
||||
|
@ -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",
|
||||
|
Loading…
Reference in New Issue
Block a user