Re: [weewx-development] Oregon Scientific WMR89 driver for weewx 4.0 and Python3

2020-05-03 Thread andr3id
Thanks a lot! I will test it and see what's left to figure out and update. Den måndag 4 maj 2020 kl. 01:55:36 UTC+2 skrev Tom Keffer: > > I've made a quick, first pass at porting the WMR89 driver to Python 3 and > WeeWX V4. > > If you have the patience, we can probably get it ported. Run it from

[weewx-development] Re: Feinstaubsensor in WeeWX einbinden

2020-05-03 Thread gjr80
Hallo, Ich hoffe, Sie können mein Google Deutsch verstehen. Es kann hilfreich sein, wenn wir Ihre WeeWX-Konfiguration verstanden haben und wissen, welche Daten WeeWX von Ihrer Station sammelt. Ein Debug-Protokollextrakt wird dies tun. Könnten Sie weewx.conf bearbeiten, debug = 1 setzen, weewx.

[weewx-development] Re: Using 4.0.0b18 with steel series but weewx isnt generating public_html/index.php

2020-05-03 Thread gjr80
No they are not related/dependent, more likely the issue is the too many 'ss' in your [StdReport] stanza. This also is not good: DEBUG weewx.reportengine: Cannot read skin configuration file /usr/local/bin /weewx/ss/ss/skin.conf for report 'SteelSeries': Config file not found: "/usr/local/bin/we

Re: [weewx-development] Oregon Scientific WMR89 driver for weewx 4.0 and Python3

2020-05-03 Thread Tom Keffer
I've made a quick, first pass at porting the WMR89 driver to Python 3 and WeeWX V4. If you have the patience, we can probably get it ported. Run it from the command line first --- don't try to run WeeWX with it If you used setup.py install: * PYTHONPATH=/home/weewx/bin python3 wmr89.py* If you

Re: [weewx-development] v4 setup.py removed option --no-prompt

2020-05-03 Thread Vince Skahan
On Sunday, May 3, 2020 at 3:23:57 PM UTC-7, Tom Keffer wrote: > > That's not so bad. Added in commit e83fcdf > > > I simplified a bit, and tweaked here and there. > > Can you test? > >> >> Looks good to me. Tom (

Re: [weewx-development] v4 setup.py removed option --no-prompt

2020-05-03 Thread Tom Keffer
That's not so bad. Added in commit e83fcdf I simplified a bit, and tweaked here and there. Can you test? -tk On Sun, May 3, 2020 at 2:03 PM Vince Skahan wrote: > Here is a short patch to (re)add this option into

Re: [weewx-development] v4 setup.py removed option --no-prompt

2020-05-03 Thread Vince Skahan
Here is a short patch to (re)add this option into setup.py, as well as the full modified version of setup.py with the patch applied. It turns out that wee_config already has the --no-prompt option, and if you call it with that switch for a 'setup.py install' then it simply copies the (valid) de

[weewx-development] Feinstaubsensor in WeeWX einbinden

2020-05-03 Thread Andreas Benkel
Hallo, Ich schaffe es leider nicht den Feinstaubsensor in WeeWX einzubinden. Ich habe das hier und bereits soweit hinbekommen das es läuft mit WeeWX u

[weewx-development] Oregon Scientific WMR89 driver for weewx 4.0 and Python3

2020-05-03 Thread andr3id
I've been using the WMR89 driver from fcauwe https://github.com/fcauwe/weewx for a while, actually totally forgetting that I've had it as an add on and that it is not found in the official repository. I've got excited when the weewx 4.0 release was available, specially with the update to Pytho

[weewx-development] Re: Using 4.0.0b18 with steel series but weewx isnt generating public_html/index.php

2020-05-03 Thread Cat22
I fixed it. It seems that if[[StandardReport]] is not set to enabled=True and skin=ss then SteelSeries wont generate the index.php It must depend on that somehow? [[StandardReport]] # This is the old "Standard" skin. By default, it is not enabled. skin = ss enable =

[weewx-development] Re: Using 4.0.0b18 with steel series but weewx isnt generating public_html/index.php

2020-05-03 Thread Cat22
I found ne problem in the debug log: DEBUG weewx.reportengine: Cannot read skin configuration file /usr/local/bin/weewx/ss/ss/skin.conf for report 'SteelSeries': Config file not found: "/usr/local/bin/weewx/ss/ss/skin.conf". And i see I had SKIN_ROOT set to ss instead of skins - so that is fixe

[weewx-development] Re: Using 4.0.0b18 with steel series but weewx isnt generating public_html/index.php

2020-05-03 Thread Cat22
Ok, I just set debug to 1 and restarted weewx. When it gets a few cycles i wil post the results, but It looks like its not executing the steel series stuff Here is my StdReport stanza: [StdReport] # Where the skins reside, relative to WEEWX_ROOT SKIN_ROOT = ss # Where the generate

[weewx-development] Re: Using 4.0.0b18 with steel series but weewx isnt generating public_html/index.php

2020-05-03 Thread gjr80
I presume you mean index.html, the skin generates index.html not index.php. Going to need to see a debug=1 log extract covering at least a couple of archive intervals. Would also help to see your [StdReport] stanza from weewx.conf or a wee_debug report. In either case do check before you post f

[weewx-development] Using 4.0.0b18 with steel series but weewx isnt generating public_html/index.php

2020-05-03 Thread Cat22
I thought this was working but it's not generating index.php wee_reports seems to run fine and wee_debug doesnt show an error when i grep it (I haven't read it all) I am using the steelseries gauges and SKIN_ROOT is set to ss in my weewx.conf file for both [[StandardReport]] and [[SteelSeries]] A

Re: [weewx-development] v4 setup.py removed option --no-prompt

2020-05-03 Thread Tom Mitchell
This worked for me too, but I removed the -e switch because it was winding up in the stattion name. Man echo didn't show me a -e option. So this is good enough for me now, but I am interested to see what Vince uncevers too. This worked for me: > > > *echo -e "hood river\n700, foot\n45\n-125\nn\nm

Re: [weewx-development] v4 setup.py removed option --no-prompt

2020-05-03 Thread Tom Keffer
There is no useful documentation on setup.py. I usually end up going through it with a debugger, step-by-step, trying to figure out how it works. Best example is the old, V3.9.2 setup.py. On Sat, May 2, 2020 at 6:14 PM Vince Skahan wrote: > > sigh - I missed the "-e" option there. I see from