[weewx-development] Re: Week and Month plots not being generated?

2019-09-12 Thread Henry Denston
ints). Can you post the plots and the entire > [ImageGenerator] stanza from skin.conf. Is your site publicly accessible > via the internet, if so a link would help. > > Gary > > On Thursday, 12 September 2019 08:44:41 UTC+10, Henry Denston wrote: >> >> >> >>

[weewx-development] Re: Week and Month plots not being generated?

2019-09-11 Thread Henry Denston
On Thursday, September 12, 2019 at 12:41:55 AM UTC+2, Henry Denston wrote: > > Hi, > > I'm playing around with a customized weewx version (adapted to a custom > weather-station) and ran the framework for the first time on the final > system for testing. > Everything w

[weewx-development] Week and Month plots not being generated?

2019-09-11 Thread Henry Denston
Hi, I'm playing around with a customized weewx version (adapted to a custom weather-station) and ran the framework for the first time on the final system for testing. Everything working great except I noticed that the weekly and montly plots do not include data. I'm using a modified version of

Re: [weewx-development] Developing a WeeWX-Driver for custom weather station hardware (adding custom sensors)

2019-03-28 Thread Henry Denston
operation)? Thank you! On Friday, March 22, 2019 at 3:23:35 PM UTC+1, Tom Keffer wrote: > > That's right. > > On Thu, Mar 21, 2019 at 8:55 PM Henry Denston > wrote: > >> Thank you for the clarification tom. >> So I assume there are not going to be more tables added

Re: [weewx-development] Developing a WeeWX-Driver for custom weather station hardware (adding custom sensors)

2019-03-21 Thread Henry Denston
rong and we will > need to see the logs. > > -tk > > On Thu, Mar 21, 2019 at 4:06 PM Henry Denston > wrote: > >> Sorry, in case I create too much spam, but I'm trying to dig deeper into >> WeeWx and while I was checking out the database structure I can not fully &

Re: [weewx-development] Developing a WeeWX-Driver for custom weather station hardware (adding custom sensors)

2019-02-24 Thread Henry Denston
on a Raspberry Pi): >> >> screen -S weather_station -d -m sh -c 'weewxd /etc/weewx/weewx.conf; exec >> bash' >> >> Then when you log in run: "sudo screen -r" which will re-attach to the >> screen session. Once finished type Ctrl+A and then D to

Re: [weewx-development] Developing a WeeWX-Driver for custom weather station hardware (adding custom sensors)

2019-02-24 Thread Henry Denston
Thank you. Another question that I would like to ask: Is there any downside just adding (executing) the sudo ./bin/weewxd weewx.conf script to the /etc/rc.locatl file? So my WeeWx installation gets started everytime on startup of my system. In the Docs this instruction is given: cd

Re: [weewx-development] Developing a WeeWX-Driver for custom weather station hardware (adding custom sensors)

2019-02-21 Thread Henry Denston
are there limits what color codes I can use? Any thoughts? Thank you, Henry. On Thursday, February 21, 2019 at 7:03:04 PM UTC+1, Henry Denston wrote: > > Thank you very much Tom. > > One thing I can not figure out is: > > In the docs it says that everytime an archive period i

Re: [weewx-development] Developing a WeeWX-Driver for custom weather station hardware (adding custom sensors)

2019-02-21 Thread Henry Denston
If a type is not in the database schema, it is skipped. > > If you're interested, the logic is in function manager._addSingleRecord() > <https://github.com/weewx/weewx/blob/master/bin/weewx/manager.py#L273>. > > -tk > > On Tue, Feb 19, 2019 at 11:02 PM Henry Denston > wrote: &

Re: [weewx-development] Developing a WeeWX-Driver for custom weather station hardware (adding custom sensors)

2019-02-19 Thread Henry Denston
the best practice? I'd say, do what Google does: save > everything. Storage is cheap. > > -tk > > On Fri, Feb 15, 2019 at 11:50 AM Henry Denston > wrote: > >> Hi Tom, >> >> thank you very much for your great reply! :) >> I do not have an existing

Re: [weewx-development] Developing a WeeWX-Driver for custom weather station hardware (adding custom sensors)

2019-02-15 Thread Henry Denston
gt; much space as you think. A major part of the database is the index, which > will still be there. > > As far as what's the best practice? I'd say, do what Google does: save > everything. Storage is cheap. > > -tk > > On Fri, Feb 15, 2019 at 11:50 AM Henry Denston &g

Re: [weewx-development] Developing a WeeWX-Driver for custom weather station hardware (adding custom sensors)

2019-02-15 Thread Henry Denston
ous databases. > > [Databases] > > # A SQLite database is simply a single file > [[archive_sqlite]] > database_name = radiation.sdb > database_type = SQLite > > # MySQL > [[archive_mysql]] > database_name = weewx > database_type

[weewx-development] Developing a WeeWX-Driver for custom weather station hardware (adding custom sensors)

2019-02-15 Thread Henry Denston
Hello everyone! I'm currently developing a custom weather station (a microcontroller collecting data from custom sensors and forwarding it to a RaspberryPi). I already read the customization guide multiple times and started to develop a custom weewx-driver for my custom weather station. The