I am using a Peet Bros. 2100 to transfer data to
CWOP. I do not have a humidity/dp sensor only a temp sensor. Everything is working fine except no barometer data being sent. My personal
website is showing barometer data fine.
Using:
Looking at the data that is being sent to CWOP from their site it shows:
EW0483>APRS,TCPXX*,qAX,CWOP-4:@022050z3943.87N/08609.37W_262/002g005t090r000p000P000b.....h...weewx-3.9.1-Ultimeter
Looking at restx.py indicates to me that no baro data is getting picked up by weewx and sending the string b..... to CWOP
# Barometer:
_baro = record.get('altimeter')
if _baro is None:
_baro_str = "b....."
else:
# While everything else in the CWOP protocol is in US Customary,
# they want the barometer in millibars.
_baro_vt = weewx.units.convert((_baro, 'inHg', 'group_pressure'),
'mbar')
_baro_str = "b%05d" % (_baro_vt[0] * 10.0)
Any help would be appreciated. Thank you.