[weewx-user] AllSeason / historygenerator.py - adding another table

2020-12-24 Thread mike.t...@noworries.plus.com
I've been runnning the AllSeasons skin successfully and thought I would add another table for growing degrees. It looked straight forward but something's not correct somewhere! The error I'm getting is; ec 24 14:40:19 weepi weewx[30078] INFO weewx.restx: Wunderground-PWS: Published record 2020-

[weewx-user] Re: AllSeason / historygenerator.py - adding another table

2020-12-25 Thread mike.t...@noworries.plus.com
Attached historygenerator.py On Thursday, December 24, 2020 at 3:15:36 PM UTC mike.t...@noworries.plus.com wrote: > I've been runnning the AllSeasons skin successfully and thought I would > add another table for growing degrees. It looked straight forward but > something

Re: [weewx-user] Last 24 hours - not quite doing what I expected

2020-10-21 Thread mike.t...@noworries.plus.com
cords, rather than LOOP packets. > > Hope this helps. > > -tk > > On Wed, Oct 21, 2020 at 3:37 AM Mike Thompson < > mike.t...@noworries.plus.com> wrote: > >> Hi All, >> >> I'd like to have information over the last 24 hours and I thought I could

[weewx-user] Preparing for v4 to v5 upgrade - Linux User and file permissions

2024-05-03 Thread mike.t...@noworries.plus.com
Hi, I'm a little embarrassed to ask these most basic of questions but at least I'll get started on the right track so here goes; I have been running Weewx on a RPI since 2104 using setup.py It's currently v4.10.2, python 3 and on rpi4 I have made several changes to graphs, reports etc and have a

[weewx-user] Upgrading to v5 from v4 - Insufficient privileges claiming USB

2024-06-24 Thread mike.t...@noworries.plus.com
Hi, I've worked my way through the upgrade steps following https://github.com/weewx/weewx/wiki/v5-upgrade and got to step 4 weewxd --config=/home/weewx/weewx.conf running as pi I get the error weepi weewxd[17081]: CRITICAL weewxd: Unable to load driver: [Errno 13] Access denied (insufficient

[weewx-user] Re: Upgrading to v5 from v4 - Insufficient privileges claiming USB

2024-06-24 Thread mike.t...@noworries.plus.com
...@gmx.at wrote: > Maybe this sections will help you: > https://github.com/weewx/weewx/wiki/Understanding-permissions#how-to-fix-device-permissions > > mike.t...@noworries.plus.com schrieb am Montag, 24. Juni 2024 um 14:27:38 > UTC+2: > >> Hi, >> I've worke

[weewx-user] Re: Upgrading to v5 from v4 - Insufficient privileges claiming USB

2024-06-24 Thread mike.t...@noworries.plus.com
exit 1; \ fi\ '", SYMLINK+="serial%c" KERNEL=="ttyS0", PROGRAM="/bin/sh -c '\ ALIASES=/proc/device-tree/aliases; \ if cmp -s $$ALIASES/uart1 $$ALIASES/serial0; then \ echo 0; \ elif cmp -s $$ALIASES/uart1

[weewx-user] Re: Upgrading to v5 from v4 - Insufficient privileges claiming USB

2024-06-24 Thread mike.t...@noworries.plus.com
ess with > solutions saying unplug and remove/reinsert batteries from the station and > the like, but lets see what your USB setup looks like. Telling us which > model station and whether you're using a usb multiport thing or connecting > directly to the pi might help too. >

[weewx-user] Re: Upgrading to v5 from v4 - Insufficient privileges claiming USB

2024-06-24 Thread mike.t...@noworries.plus.com
I thought you might have cracked it but... I'm using pi as the weewx user. I use NAS to backup weewx. The db skins etc are all on the rpi sd card. I've checked and pi is the owner of the data on the NAS pi user can create files on NAS I thought the virtual environment might prevent pi using the NA

Re: [weewx-user] Upgrading to v5 from v4 - Insufficient privileges claiming USB

2024-06-25 Thread mike.t...@noworries.plus.com
’ errors .. > *⊣GE⊢* > > On 25 Jun 2024, at 1:22 PM, Graham Eddy wrote: > > from memory, ‘magic error’ numbers pop up mostly with corrupt executables > (or wrong processor) and filesys mounts (unsupported format) > *⊣GE⊢* > > On 25 Jun 2024, at 2:01 AM, mike.t...@noworries.plu

[weewx-user] Re: Alarm Data caused Weewx to exit due to NULL rainfall

2024-08-31 Thread mike.t...@noworries.plus.com
Is it just a matter of checking for None first i.e. badData_test = outTemp is None or outTemp < 10.0 or windGust is None or windGust > 100 or *rain is None or rain* > 10 or *rainRate is None* or rainRate > 100 On Saturday, August 31, 2024 at 4:23:59 PM UTC+1 mike.t...@noworr

[weewx-user] Alarm Data caused Weewx to exit due to NULL rainfall

2024-08-31 Thread mike.t...@noworries.plus.com
Weewx version 4.10 running on RPI 4 using FO weather station. Last change was 2 weeks ago when weather station reported crazy rain volume and rain rate. I amended the alarm condition from; badData_test = outTemp is None or outTemp < 10.0 or windGust is None or windGust > 100 to badData_test =

Re: [weewx-user] Upgrading to v5 from v4 - Insufficient privileges claiming USB

2024-09-07 Thread mike.t...@noworries.plus.com
env brings particularly as this rpi is dedicated to weewx, but I'll stick with the standard installation. BRgds Mike On Tuesday, June 25, 2024 at 7:14:26 PM UTC+1 mike.t...@noworries.plus.com wrote: > I've decided to revert back to v4 and review logs etc to see if I'm > carrying

[weewx-user] AllTimeSeason history generator doesn't recognise new unit group

2024-10-21 Thread mike.t...@noworries.plus.com
Hi All, I'm adding kw/h data from my solar panels to a daily summary table. I've followed the electrical example in the weewx docs and - added a new database column, solar - created a solar.py which doesn't do anything other than define the new unit group and add solar to it from wee

[weewx-user] Re: AllTimeSeason history generator doesn't recognise new unit group

2024-10-21 Thread mike.t...@noworries.plus.com
def __init__(self, engine, config_dict): # Initialize my superclass first: super(AddSolar, self).__init__(engine, config_dict) On Monday, October 21, 2024 at 2:42:19 PM UTC+1 mike.t...@noworries.plus.com wrote: > Hi All, > I'm adding kw/h data from my solar panels to

Re: [weewx-user] Re: AllTimeSeason history generator doesn't recognise new unit group

2024-10-23 Thread mike.t...@noworries.plus.com
t; How are you capturing the data from your solar panels? > > https://claydonsweather.org.uk > > On 21 Oct 2024, at 14:55, mike.t...@noworries.plus.com < > mike.t...@noworries.plus.com> wrote: > > I forgot to say that solar.py is in weewx.conf engine section > >