Re: [weewx-user] How to handle sensor data that doesn't come at set times

2024-03-15 Thread Jimi Lawson
This is the bme280 and where I got it from https://shop.pimoroni.com/search?q=Adafruit%20BME280%20I2C%20or%20SPI%20Temperature%20Humidity%20Pressure%20Sensor%20-%20STEMMA%20QT Regards Jimi On Friday 15 March 2024 at 23:52:57 UTC p q wrote: > I do it the dumb way. I have my sensors send data

Re: [weewx-user] How to handle sensor data that doesn't come at set times

2024-03-15 Thread p q
I do it the dumb way. I have my sensors send data when they're ready. I have a service running on the weewx box that subscribes to the MQTT messages and writes them to a temp file. I modified the driver to read from the temp file. I check to see if the data is older than 20 minutes and ignore it

Re: [weewx-user] How to handle sensor data that doesn't come at set times

2024-03-15 Thread Greg from Oz
My bme280 only does pressure and temperature. I have it on a sonoff SV. What bme280 are you using? Do you have a part number? I am getting the humidity and temp from the zigbee because it is in the house and the bme280 is in the shed and it is hot in there but I can add one for the house I

Re: [weewx-user] How to handle sensor data that doesn't come at set times

2024-03-15 Thread Jimi Lawson
What device does your station/weewx run on, couldn't you connect the bme280 to it and use the temp/humidity/pressure reading from it ? that's what I do. On Friday 15 March 2024 at 21:21:37 UTC Greg from Oz wrote: > Thanks Tom. > > Probably not something I could do. I know nothing about python.

Re: [weewx-user] How to handle sensor data that doesn't come at set times

2024-03-15 Thread Greg from Oz
Thanks Tom. Probably not something I could do. I know nothing about python. Maybe later when I have time to look at it again. I will see if I can find a device that transmits in regular intervals. On Friday 15 March 2024 at 23:55:13 UTC+11 Tom Keffer wrote: > You have many single data points,

[weewx-user] Images in the Seasons Page Disappeared

2024-03-15 Thread Steve Culp
The seasons page stopped displaying the page full of graphs but the seasons code is still generating all of them as far as I can tell. Something must be abnormal in a seasons config file somewhere but I cant figure it out at my "Hello World!" programming expertise level. LOL. I have never

[weewx-user] Re: WeeWx 5.0 problem on Ubuntu 23.10 after upgrade

2024-03-15 Thread danvill...@bcsdk12.org
Works now. Thank you!! On Friday, March 15, 2024 at 8:17:50 AM UTC-4 matthew wall wrote: > On Friday, March 15, 2024 at 7:38:23 AM UTC-4 danvill...@bcsdk12.org > wrote: > > *I am not able to upgrade after upgrading Weewx 5.0 on Ubuntu 23.10* > *Any thoughts are greatly appreciated!* > > > as a

Re: [weewx-user] How to handle sensor data that doesn't come at set times

2024-03-15 Thread Tom Keffer
You have many single data points, separated with long stretches of nulls --- no lines. That's why line_gap_fraction isn't working. By design, WeeWX drivers don't cache data. See the guidelines for writing drivers. However, you

[weewx-user] Re: WeeWx 5.0 problem on Ubuntu 23.10 after upgrade

2024-03-15 Thread matthew wall
On Friday, March 15, 2024 at 7:38:23 AM UTC-4 danvill...@bcsdk12.org wrote: *I am not able to upgrade after upgrading Weewx 5.0 on Ubuntu 23.10* *Any thoughts are greatly appreciated!* as a workaround, edit your weewx configuration file by adding this to the [StdReport] section: [[Defaults]]

[weewx-user] Re: WeeWx 5.0 problem on Ubuntu 23.10 after upgrade

2024-03-15 Thread matthew wall
it looks like a bug in the v5 station actions. fixed at commit 2754e393 On Friday, March 15, 2024 at 7:38:23 AM UTC-4 danvill...@bcsdk12.org wrote: *I am not able to upgrade after upgrading Weewx 5.0 on Ubuntu 23.10* *Any thoughts are greatly appreciated!* Setting up weewx (5.0.2-1) ... Using

Re: [weewx-user] WeeWx 5.0 problem on Ubuntu 23.10 after upgrade

2024-03-15 Thread Tom Keffer
Hello, What version were you upgrading from? It appears to be an older version that does not have a [[Defaults]] section (introduced V3.9). On Fri, Mar 15, 2024 at 4:38 AM danvill...@bcsdk12.org < danville.sc...@bcsdk12.org> wrote: > *I am not able to upgrade after upgrading Weewx 5.0 on Ubuntu

[weewx-user] WeeWx 5.0 problem on Ubuntu 23.10 after upgrade

2024-03-15 Thread danvill...@bcsdk12.org
*I am not able to upgrade after upgrading Weewx 5.0 on Ubuntu 23.10* *Any thoughts are greatly appreciated!* Setting up weewx (5.0.2-1) ... Using weewx:weewx as user:group Saving old defaults to /etc/default/weewx-20240315073503 Creating /etc/default/weewx Using debconf configuration values from

Re: [weewx-user] MQTTSubscribe and paho mqtt heads up

2024-03-15 Thread Graham Eddy
i wrapped paho mqtt a few years ago, but not implementing whole interface. i wote a bunch of apps on top of my wrapper, one being my own weewx mqtt service/driver, other apps are various mqtt producers and consumers thanks for the heads-up on the mqtt interface change. it prompted me to polish