As you have alredy found this is another case where rtl_433 has changed the
reported info from what is expected by sdr.py V0.77.
For this station it looks like most of the strings have changed.
In the 'class OSWGR800Packet(Packet):' section of sdr.py try changing these
bits,
from IDENTIFIER = "WGR800"
to IDENTIFIER = "Oregon-WGR800"
from pkt['wind_gust'] = Packet.get_float(obj, 'gust')
pkt['wind_speed'] = Packet.get_float(obj, 'average')
pkt['wind_dir'] = Packet.get_float(obj, 'direction')
to pkt['wind_gust'] = Packet.get_float(obj, 'wind_max_m_s')
pkt['wind_speed'] = Packet.get_float(obj, 'wind_avg_m_s')
pkt['wind_dir'] = Packet.get_float(obj, 'wind_dir_deg')
The battery status info has also changed from 'battery:OK' to 'battery_ok :
1' but I'm not sure what change is needed to fix that.
Gaz
--
You received this message because you are subscribed to the Google Groups
"weewx-user" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To view this discussion on the web visit
https://groups.google.com/d/msgid/weewx-user/45760cec-2038-4b2d-8ba7-8fff073d94be%40googlegroups.com.