[weewx-user] Re: Windy plugin error

2020-01-09 Thread mwall
On Thursday, January 9, 2020 at 1:24:08 PM UTC-5, raenrfm wrote: > > Hey Vince, thanks for the tip. Turns out I needed to send from my base > station the "barometer" value pre calculated in the base station before > sending it to the mqtt server, so seeing as windy.py needs the barometer > impl

[weewx-user] Re: Windy plugin error

2020-01-09 Thread raenrfm
Hey Vince, thanks for the tip. Turns out I needed to send from my base station the "barometer" value pre calculated in the base station before sending it to the mqtt server, so seeing as windy.py needs the barometer implicitly I had to send it to weewx already corrected for my altitude. I gue

[weewx-user] Re: Windy plugin error

2020-01-09 Thread vince
On Thursday, January 9, 2020 at 5:47:19 AM UTC-8, raenrfm wrote: > > Seems like it's this line in the windy.py: > > if 'barometer' in record_m: > > data['pressure'] = 100.0 * record_m['barometer'] # Pascalsthat is causing > the issue, but there is no mqtt topic in my setup called "barometer", I'm

[weewx-user] Re: Windy plugin error

2020-01-09 Thread raenrfm
Seems like it's this line in the windy.py: if 'barometer' in record_m: data['pressure'] = 100.0 * record_m['barometer'] # Pascalsthat is causing the issue, but there is no mqtt topic in my setup called "barometer", I'm only posting "pressure", so why would it even be trying to execute this func