Re: [weewx-user] "First Light", working, but with some problems

2023-10-01 Thread Craig Young
I found a solution that results in the DB and WU being updated each minute. First, I set weewx config back to the original settings: [StdArchive] archive_interval = 60 archive_delay = 5 Then I changed the driver to output two types of loop packets: a) if there was no data received from the dat

Re: [weewx-user] want to use lux value to calculate value for 'radiation'

2023-10-01 Thread gjr80
So what is your reason for saying "it doesn't work", are you looking at web page output, a plot etc or did you look at the loop packet data being emitted by your driver? The former two are really at the end of the whole processing chain, so there are many opportunities for things to go awry bef

Re: [weewx-user] "First Light", working, but with some problems

2023-10-01 Thread Craig Young
This also updates the DB and WU every minute: [StdArchive] archive_interval = 1 archive_delay = 10 I tried archive_interval = 0 but got a divide by zero exception. I assume that is because the software tried to calculate an average for the archive record by dividing the # of loop records re

[weewx-user] Re: Add soil moisture data

2023-10-01 Thread Invisible Man
Ok, I'm approaching the solution. In skin.conf I added the following to generate the daymoistsoil.png + [[[daymoistsoil]]] +soilMoist1 and then in index.html.tmpl: + It should be working... at least daymoistsoil.png gets generated. On Sunday, October 1, 2023

Re: [weewx-user] want to use lux value to calculate value for 'radiation'

2023-10-01 Thread Kevin Crivelli
did it, still not working. oh well. On Friday, September 29, 2023 at 4:00:06 PM UTC-4 Eric K wrote: > You have to restart weewx before changes made to the weewx.conf file will > take effect. > If you've restarted weewx, you should start to see additions to the > graphs, every 5 minutes. > > On

Re: [weewx-user] "First Light", working, but with some problems

2023-10-01 Thread Craig Young
The "429" error is fixed. Thanks Karen and Tom. The 2 minute update problem, I changed the driver to poll the hardware (serial port) every 15 seconds, but the database still updated every 2 minutes. After playing with several parameters in the driver and weewx.conf I finally got the database t

[weewx-user] Add soil moisture data

2023-10-01 Thread Invisible Man
Hi, I *just acquired a new soil moisture sensor* (EcoWitt). I added it to the weather station and it works fine. Now, I'd like to get the value with Weewx. I already use the the *Interceptor* driver (https://github.com/matthewwall/weewx-interceptor) which works fine for months/years, and I see

Re: [weewx-user] Re: Getting no chart or graph - just the looped data

2023-10-01 Thread kd4e
Great news for many as the inovato Quadra comes already in a cabinet, and is easy to set up. I appreciate all the work you've done on WeeWx and your patience in helping me to get it working. Next step are to feed to WU, my personal web site, and Amateur Radio APRS. Thanks again! On Saturday,

Re: [weewx-user] "First Light", working, but with some problems

2023-10-01 Thread Tom Keffer
First, a note on how weewxd works: the driver blocks, waiting for data to come in. The program cannot do anything while it is blocked. Once data comes in, then it can proceed, emit a LOOP packet, then the rest of the program can process it. Your fileparse polling interval is 60 seconds. This means

[weewx-user] Re: "First Light", working, but with some problems

2023-10-01 Thread Karen K
b) Your should look which service creates those messages. According to your log it ist "StationRegistry". So, what is "post_interval" saying in your weewx.conf? Besides that, if I remember it correctly, station registry is not working actually. Try setting "register_this_station" to "false". Cr