Re: [weewx-user] Driver and Skin for DAVIS Weatherlink Console 6313

2023-11-08 Thread 'Werner Krenn' via weewx-user
@Tom I'm still pretty new to Weewx and don't know all the options yet. You can also use the Seasons Skin, as the console skin uses its own directory See the result with Seasons 4.10.2 skin (untouched) https://www.pc-wetterstation.de/wetter/weewx7/Seasons/ @Greg, >and thus won't work if either

Re: [weewx-user] Replacement humidity sensor

2023-11-08 Thread michael.k...@gmx.at
With this config you get both, outHumidity and extraHumid1 mixed try: outHumidity = extraHumid1 if extraHumid1 is not None else None tadej.j...@gmail.com schrieb am Mittwoch, 8. November 2023 um 18:28:20 UTC+1: > It is not working with StdCalibrate > > [StdCalibrate] > [[Corrections]] >

[weewx-user] Weather related icons in WeeWX skins / Wettersymbole in WeeWX-Skins

2023-11-08 Thread Karen K
I guess I did not inform about the extension that provides the $presentweather() tag to display weather related icons and symbols in WeeWX skins by now. Different symbol sets are supported. And I recently updated the documentation. So this may be a reason to inform now. Ich glaube, ich habe an

[weewx-user] Can't make my Klimalogg PRO work with weewx

2023-11-08 Thread Nenad Dragic
Hi, I have just tried to set up my RPI up for 5 time, and still no luck. Issues: Is not reading from my Klimalogg PRO 30.3039.IT V11 No folder: /var/www/html/weewx Here is what I my device info and what I am doing, step my step: # RPI SW Info PRETTY_NAME="Debian GNU/Linux 12 (bookworm)"

Re: [weewx-user] Replacement humidity sensor

2023-11-08 Thread tadej.j...@gmail.com
It is not working with StdCalibrate [StdCalibrate] [[Corrections]] # For each type, an arbitrary calibration expression can be given. # It should be in the units defined in the StdConvert section. # Example: foo = foo + 0.2 outHumidity = extraHumid1

Re: [weewx-user] Replacement humidity sensor

2023-11-08 Thread michael.k...@gmx.at
With this config you get both, outHumidity and extraHumid1 mixed. Try, as mentioned above: outHumidity = extraHumid1 if extraHumid1 is not None else None tadej.j...@gmail.com schrieb am Mittwoch, 8. November 2023 um 18:28:20 UTC+1: > It is not working with StdCalibrate > > [StdCalibrate] >

[weewx-user] Re: Can't make my Klimalogg PRO work with weewx

2023-11-08 Thread vince
A few comments and suggestions: - Please 'attach' logs and screen grabs as text files rather than including images. We can't grep for things in screen grabs. - Your pi uses systemd so /var/log/messages and /var/log/syslog is replaced by systemd. If you want traditional logging do

[weewx-user] Re: Can't make my Klimalogg PRO work with weewx

2023-11-08 Thread Nenad Dragic
My logfile: # WEEWX CONFIGURATION FILE # # Copyright (c) 2009-2022 Tom Keffer # See the file LICENSE.txt for your rights. ## # This section is for general configuration information. # Set to 1 for extra debug info,

Re: [weewx-user] Acurite inHumidity

2023-11-08 Thread p q
I built one using an ESP8266 and the Arduino tools with mqtt. I wrote a simple Python script to subscribe to the mqtt topic and write the results to a text file. I hacked the accurite driver to read that text file and put that value in Weewx record. Probably not the best way. On Wed, Nov 8,

Re: [weewx-user] Acurite inHumidity

2023-11-08 Thread vince
Well you might start by sharing which driver and extension(s) you are trying to use, as well as their config file snippets and some log exerpts. On Wednesday, November 8, 2023 at 6:54:48 AM UTC-8 buck...@gmail.com wrote: > That's too bad, the data point's "right there"! > > What sensor did

Re: [weewx-user] Replacement humidity sensor

2023-11-08 Thread Graham Eddy
just looking at the intention of the code without having read the thread [always dangerous!] i cannot quote the original python text here because unfortunately it was reported using a screenshot [please don’t do that] but note that if extraHumid1 is undefined (not present in packet, as opposed

Re: [weewx-user] Replacement humidity sensor

2023-11-08 Thread gjr80
When merging sources it is often useful to run WeeWX directly , that way you can see exactly what is/is not in your loop packets. Frequently it is not what you may expect. Gary On Thursday, 9 November 2023 at 09:33:30 UTC+10 Graham

Re: [weewx-user] Replacement humidity sensor

2023-11-08 Thread michael.k...@gmx.at
As I said: "something like" "not tested" Then I'd give outHumidity = extraHumid1 if 'extraHumid1' in locals() else None a try. Still: not tested, an I am just assuming that setting it to None when present it will be ignored when accumulating the value over an archive_interval. gjr80

[weewx-user] Re: Can't make my Klimalogg PRO work with weewx

2023-11-08 Thread michael.k...@gmx.at
Just for the record, vince: I don't see images but only text. vince schrieb am Mittwoch, 8. November 2023 um 21:24:55 UTC+1: > A few comments and suggestions: > >- Please 'attach' logs and screen grabs as text files rather than >including images. We can't grep for things in screen

Re: [weewx-user] Replacement humidity sensor

2023-11-08 Thread tadej.j...@gmail.com
Michael, when trying this I get value N/A for outHumidity so we are getting somewhere, but it is still not replaced with extraHumid1 value. What do you mean with removin it from locals? :) -- You received this message because you are subscribed to the Google Groups "weewx-user" group. To

Re: [weewx-user] Acurite inHumidity

2023-11-08 Thread buck...@gmail.com
Acurite driver 0.4. (2014) Notes (in the driver file) about the Acurite(s) are that inside humidity IS published, but there's also a "FIXME: decode inside humidity" comment, and no other reference to inHumidity. I've located one reference to an updated driver 0.5, but can't see where

Re: [weewx-user] Replacement humidity sensor

2023-11-08 Thread tadej.j...@gmail.com
It works! In the end the solution was so simple. I also changed dewpoint from hardware to software calculation and it also works OK. Now I must only get one proper sensor instead dht22. Thank you all! četrtek, 9. november 2023 ob 07:55:05 UTC+1 je oseba michael.k...@gmx.at napisala: > It

Re: [weewx-user] Replacement humidity sensor

2023-11-08 Thread michael.k...@gmx.at
Did run run weewxd directly, and check, how the loop packet drop in and what in there? Also: what kind of sensor did you apply to augment your data and how does the data go into into you weewx? MQTT? What I did: With my ws23xx, I have a outHumidity Sensor that works well below 85%, but barely

Re: [weewx-user] Replacement humidity sensor

2023-11-08 Thread michael.k...@gmx.at
As I said: "something like" "not tested" Then I'd give outHumidity = extraHumid1 if 'extraHumid1' in locals() else None a try. Still: not tested, an I am just assuming that setting it to None when present it will be ignored when accumulating the value over an archive_interval. It might

Re: [weewx-user] Replacement humidity sensor

2023-11-08 Thread michael.k...@gmx.at
It should work like this, when set the database column from above to outHumidity instead of extraHumid1. (And nothing in the Corrections) tadej.j...@gmail.com schrieb am Donnerstag, 9. November 2023 um 07:37:18 UTC+1: > For testing purpose I used esp32 with dht22 configured as web server. >

Re: [weewx-user] Replacement humidity sensor

2023-11-08 Thread tadej.j...@gmail.com
For testing purpose I used esp32 with dht22 configured as web server. Every 10 minutes i use cron to wget value from esp32 to a .txt file. Then I use weewx user service to read this value into database. Service: # -*- coding: utf-8 -*- import syslog import weewx from weewx.wxengine import

Re: [weewx-user] Replacement humidity sensor

2023-11-08 Thread michael.k...@gmx.at
It should work like this, when set the database column from above to outHumidity instead of extraHumid1. tadej.j...@gmail.com schrieb am Donnerstag, 9. November 2023 um 07:37:18 UTC+1: > For testing purpose I used esp32 with dht22 configured as web server. > Every 10 minutes i use cron to wget

Re: [weewx-user] Acurite inHumidity

2023-11-08 Thread buck...@gmail.com
That's too bad, the data point's "right there"! What sensor did you add and is there any trick/guide to getting a second device connected to weewx that I need to know about? Cheers, Tom On Tuesday, November 7, 2023 at 5:19:21 PM UTC-7 p q wrote: > I'm pretty sure it isn't included on the USB

[weewx-user] Re: MQTTSubscribeDriver TLS

2023-11-08 Thread bell...@gmail.com
FJ, Thanks for letting us know you are up and running. When I first started with WeeWX, the fact that indentation is just for readability tripped me up. A couple of additional things. - The complete documentation for the [[tls]] section is here,

Re: [weewx-user] I am a happy Weex user,

2023-11-08 Thread michael.k...@gmx.at
> I am a happy Weex user #metoo ;) Nate Bargmann schrieb am Mittwoch, 8. November 2023 um 00:29:27 UTC+1: > Very nicely done! > > - Nate > > -- > "The optimist proclaims that we live in the best of all > possible worlds. The pessimist fears this is true." > Web: https://www.n0nb.us > Projects:

Re: [weewx-user] Replacement humidity sensor

2023-11-08 Thread tadej.j...@gmail.com
I will try this one for now! I hope weewx will use it later to calculate dew point and heat index with this value. [StdCalibrate] [[Corrections]] outHumidity = extraHumid1 if extraHumid1 is not None else None torek, 7. november 2023 ob 12:36:26 UTC+1 je oseba michael.k...@gmx.at napisala: >