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 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. 
>> 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 StdService
>>
>> class vlagaservice(StdService):
>> def __init__(self, engine, config_dict):
>> super(vlagaservice, self).__init__(engine, config_dict)
>> d = config_dict.get('vlagaservice', {})
>> self.filename = d.get('filename', '/usb/www/tla/vlaga.txt')
>> syslog.syslog(syslog.LOG_INFO, "vlaga: using %s" % self.filename)
>> self.bind(weewx.NEW_ARCHIVE_RECORD, self.read_file)
>>
>> def read_file(self, event):
>> try:
>> with open(self.filename) as f:
>> value = f.read()
>> syslog.syslog(syslog.LOG_DEBUG, "vlaga: found value of %s" % 
>> value)
>> event.record['extraHumid1'] = float(value)
>> except Exception, e:
>> syslog.syslog(syslog.LOG_ERR, "vlaga: cannot read value: %s" 
>> % e)
>>
>>
>> četrtek, 9. november 2023 ob 07:20:17 UTC+1 je oseba michael.k...@gmx.at 
>> napisala:
>>
>>> 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 has readings above this value. Then I made a homebrew ESP8266 
>>> based Sensor that emits it's readings with MQTT. In weewx I use 
>>> MQTTSubsbribe to get these values and mapped it to extraHumid1. Since my 
>>> Sensor doesn't produce bad values all the time but only in a certain range, 
>>> and my first homebrew sensor wasn't that rock-solid in terms of 
>>> reliability, my approach was to used the extra sensors value only if there 
>>> are current readings, if not, fall back to the stock sensor. I didn't solve 
>>> this with a correction, but with litte user service, I called 
>>> "usePrefered". This proofed to do the trick for me an is tested :D It 
>>> doesn't come with an installer,  I hope I described everything necessary in 
>>> the comments. You find the code there:
>>>
>>>
>>> https://github.com/mKainzbauer/weewx_extensions/blob/master/usePreferred.py
>>>
>>> tadej.j...@gmail.com schrieb am Donnerstag, 9. November 2023 um 
>>> 07:03:57 UTC+1:
>>>
 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 unsubscribe from this group and stop receiving emails from it, send an email 
to weewx-user+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/weewx-user/2543a3e2-6ce4-4b18-8736-dbdda469bfb8n%40googlegroups.com.


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. 
> 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 StdService
>
> class vlagaservice(StdService):
> def __init__(self, engine, config_dict):
> super(vlagaservice, self).__init__(engine, config_dict)
> d = config_dict.get('vlagaservice', {})
> self.filename = d.get('filename', '/usb/www/tla/vlaga.txt')
> syslog.syslog(syslog.LOG_INFO, "vlaga: using %s" % self.filename)
> self.bind(weewx.NEW_ARCHIVE_RECORD, self.read_file)
>
> def read_file(self, event):
> try:
> with open(self.filename) as f:
> value = f.read()
> syslog.syslog(syslog.LOG_DEBUG, "vlaga: found value of %s" % 
> value)
> event.record['extraHumid1'] = float(value)
> except Exception, e:
> syslog.syslog(syslog.LOG_ERR, "vlaga: cannot read value: %s" % 
> e)
>
>
> četrtek, 9. november 2023 ob 07:20:17 UTC+1 je oseba michael.k...@gmx.at 
> napisala:
>
>> 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 has readings above this value. Then I made a homebrew ESP8266 
>> based Sensor that emits it's readings with MQTT. In weewx I use 
>> MQTTSubsbribe to get these values and mapped it to extraHumid1. Since my 
>> Sensor doesn't produce bad values all the time but only in a certain range, 
>> and my first homebrew sensor wasn't that rock-solid in terms of 
>> reliability, my approach was to used the extra sensors value only if there 
>> are current readings, if not, fall back to the stock sensor. I didn't solve 
>> this with a correction, but with litte user service, I called 
>> "usePrefered". This proofed to do the trick for me an is tested :D It 
>> doesn't come with an installer,  I hope I described everything necessary in 
>> the comments. You find the code there:
>>
>>
>> https://github.com/mKainzbauer/weewx_extensions/blob/master/usePreferred.py
>>
>> tadej.j...@gmail.com schrieb am Donnerstag, 9. November 2023 um 07:03:57 
>> UTC+1:
>>
>>> 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 unsubscribe from this group and stop receiving emails from it, send an email 
to weewx-user+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/weewx-user/a89ea494-6cd3-4286-836f-fa2bd643363bn%40googlegroups.com.


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 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 StdService
>
> class vlagaservice(StdService):
> def __init__(self, engine, config_dict):
> super(vlagaservice, self).__init__(engine, config_dict)
> d = config_dict.get('vlagaservice', {})
> self.filename = d.get('filename', '/usb/www/tla/vlaga.txt')
> syslog.syslog(syslog.LOG_INFO, "vlaga: using %s" % self.filename)
> self.bind(weewx.NEW_ARCHIVE_RECORD, self.read_file)
>
> def read_file(self, event):
> try:
> with open(self.filename) as f:
> value = f.read()
> syslog.syslog(syslog.LOG_DEBUG, "vlaga: found value of %s" % 
> value)
> event.record['extraHumid1'] = float(value)
> except Exception, e:
> syslog.syslog(syslog.LOG_ERR, "vlaga: cannot read value: %s" % 
> e)
>
>
> četrtek, 9. november 2023 ob 07:20:17 UTC+1 je oseba michael.k...@gmx.at 
> napisala:
>
>> 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 has readings above this value. Then I made a homebrew ESP8266 
>> based Sensor that emits it's readings with MQTT. In weewx I use 
>> MQTTSubsbribe to get these values and mapped it to extraHumid1. Since my 
>> Sensor doesn't produce bad values all the time but only in a certain range, 
>> and my first homebrew sensor wasn't that rock-solid in terms of 
>> reliability, my approach was to used the extra sensors value only if there 
>> are current readings, if not, fall back to the stock sensor. I didn't solve 
>> this with a correction, but with litte user service, I called 
>> "usePrefered". This proofed to do the trick for me an is tested :D It 
>> doesn't come with an installer,  I hope I described everything necessary in 
>> the comments. You find the code there:
>>
>>
>> https://github.com/mKainzbauer/weewx_extensions/blob/master/usePreferred.py
>>
>> tadej.j...@gmail.com schrieb am Donnerstag, 9. November 2023 um 07:03:57 
>> UTC+1:
>>
>>> 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 unsubscribe from this group and stop receiving emails from it, send an email 
to weewx-user+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/weewx-user/02c82b93-3048-4088-8be4-419d2b3af981n%40googlegroups.com.


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 StdService

class vlagaservice(StdService):
def __init__(self, engine, config_dict):
super(vlagaservice, self).__init__(engine, config_dict)
d = config_dict.get('vlagaservice', {})
self.filename = d.get('filename', '/usb/www/tla/vlaga.txt')
syslog.syslog(syslog.LOG_INFO, "vlaga: using %s" % self.filename)
self.bind(weewx.NEW_ARCHIVE_RECORD, self.read_file)

def read_file(self, event):
try:
with open(self.filename) as f:
value = f.read()
syslog.syslog(syslog.LOG_DEBUG, "vlaga: found value of %s" % 
value)
event.record['extraHumid1'] = float(value)
except Exception, e:
syslog.syslog(syslog.LOG_ERR, "vlaga: cannot read value: %s" % 
e)


četrtek, 9. november 2023 ob 07:20:17 UTC+1 je oseba michael.k...@gmx.at 
napisala:

> 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 has readings above this value. Then I made a homebrew ESP8266 based 
> Sensor that emits it's readings with MQTT. In weewx I use MQTTSubsbribe to 
> get these values and mapped it to extraHumid1. Since my Sensor doesn't 
> produce bad values all the time but only in a certain range, and my first 
> homebrew sensor wasn't that rock-solid in terms of reliability, my approach 
> was to used the extra sensors value only if there are current readings, if 
> not, fall back to the stock sensor. I didn't solve this with a correction, 
> but with litte user service, I called "usePrefered". This proofed to do the 
> trick for me an is tested :D It doesn't come with an installer,  I hope I 
> described everything necessary in the comments. You find the code there:
>
> https://github.com/mKainzbauer/weewx_extensions/blob/master/usePreferred.py
>
> tadej.j...@gmail.com schrieb am Donnerstag, 9. November 2023 um 07:03:57 
> UTC+1:
>
>> 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 unsubscribe from this group and stop receiving emails from it, send an email 
to weewx-user+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/weewx-user/9c2bf310-9f99-4f21-95cc-7026400927ecn%40googlegroups.com.


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 has readings above this value. Then I made a homebrew ESP8266 based 
Sensor that emits it's readings with MQTT. In weewx I use MQTTSubsbribe to 
get these values and mapped it to extraHumid1. Since my Sensor doesn't 
produce bad values all the time but only in a certain range, and my first 
homebrew sensor wasn't that rock-solid in terms of reliability, my approach 
was to used the extra sensors value only if there are current readings, if 
not, fall back to the stock sensor. I didn't solve this with a correction, 
but with litte user service, I called "usePrefered". This proofed to do the 
trick for me an is tested :D It doesn't come with an installer,  I hope I 
described everything necessary in the comments. You find the code there:

https://github.com/mKainzbauer/weewx_extensions/blob/master/usePreferred.py

tadej.j...@gmail.com schrieb am Donnerstag, 9. November 2023 um 07:03:57 
UTC+1:

> 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 unsubscribe from this group and stop receiving emails from it, send an email 
to weewx-user+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/weewx-user/3891a79c-a6c8-4ad8-b5bc-2740577364a2n%40googlegroups.com.


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 unsubscribe from this group and stop receiving emails from it, send an email 
to weewx-user+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/weewx-user/c28807ff-df5e-457d-b337-adbc23a66ed7n%40googlegroups.com.


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 be as well necessary to remove it from locals, 
if possible. 


gjr80 schrieb am Donnerstag, 9. November 2023 um 03:53:49 UTC+1:

> 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 Eddy wrote:
>
>> 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 to present but with value None) then the assignment fails 
>> (outHumidity is unchanged). maybe check if it is in locals() instead
>> *⊣GE⊢*
>>
>> On 9 Nov 2023, at 6:01 am, tadej.j...@gmail.com  
>> wrote:
>>
>> Still the same .. 
>> SQL from database:
>>
>> 
>>
>> Screenshot from config:
>>
>> 
>>
>> And yes I have stopped and restarted weewxd several times.
>>
>>

-- 
You received this message because you are subscribed to the Google Groups 
"weewx-user" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to weewx-user+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/weewx-user/e83968cf-cccf-4a42-9e16-3d96e39749dan%40googlegroups.com.


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 schrieb am Donnerstag, 9. November 2023 um 03:53:49 UTC+1:

> 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 Eddy wrote:
>
>> 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 to present but with value None) then the assignment fails 
>> (outHumidity is unchanged). maybe check if it is in locals() instead
>> *⊣GE⊢*
>>
>> On 9 Nov 2023, at 6:01 am, tadej.j...@gmail.com  
>> wrote:
>>
>> Still the same .. 
>> SQL from database:
>>
>> 
>>
>> Screenshot from config:
>>
>> 
>>
>> And yes I have stopped and restarted weewxd several times.
>>
>>

-- 
You received this message because you are subscribed to the Google Groups 
"weewx-user" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to weewx-user+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/weewx-user/f15afe76-a1ba-48dc-901c-3475686e9379n%40googlegroups.com.


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 Eddy wrote:

> 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 to present but with value None) then the assignment fails 
> (outHumidity is unchanged). maybe check if it is in locals() instead
> *⊣GE⊢*
>
> On 9 Nov 2023, at 6:01 am, tadej.j...@gmail.com  
> wrote:
>
> Still the same .. 
> SQL from database:
>
> 
>
> Screenshot from config:
>
> 
>
> And yes I have stopped and restarted weewxd several times.
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"weewx-user" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to weewx-user+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/weewx-user/e04910ec-8137-46b0-aab2-e6407b849aefn%40googlegroups.com.


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 to 
present but with value None) then the assignment fails (outHumidity is 
unchanged). maybe check if it is in locals() instead
⊣GE⊢

> On 9 Nov 2023, at 6:01 am, tadej.j...@gmail.com  
> wrote:
> 
> Still the same ..
> SQL from database:
> 
> 
> Screenshot from config:
> 
> 
> And yes I have stopped and restarted weewxd several times.

-- 
You received this message because you are subscribed to the Google Groups 
"weewx-user" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to weewx-user+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/weewx-user/837ACBA1-2CEC-454E-A257-2A8C97AAB464%40geddy.au.


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]
> [[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 
>
> I am getting correct values in extraHumid1 from replacement sensor. I 
> checked database. But outHumidity is stil getting value from dead station 
> sensor.
>
> sreda, 8. november 2023 ob 11:14:14 UTC+1 je oseba tadej.j...@gmail.com 
> napisala:
>
>> 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:
>>
>>> Thanks, I forgot about that! Then I would definitely prefer getting an 
>>> Ecowitt Gateway + outdoor sensor over the replacement part. 
>>>
>>> gjr80 schrieb am Montag, 6. November 2023 um 21:08:54 UTC+1:
>>>
 Not necessary, if the Ecowitt gateway driver can be used it can be run 
 as a data service to augment an existing driver.

 Gary

 On Tuesday, 7 November 2023 at 06:03:39 UTC+10 michael.k...@gmx.at 
 wrote:

> With the ecowitt gateway you need a second weewxd running, as a 
> downside. But you can build a whole new station, step by step, around 
> that 
> gateway (which is probably way to go, sooner or later). 
>
> vince schrieb am Montag, 6. November 2023 um 20:41:08 UTC+1:
>
>> Another option is an ecowitt gateway and their outside T+H sensor, 
>> which integrates well into weewx.  
>>
>> On Monday, November 6, 2023 at 11:19:23 AM UTC-8 michael.k...@gmx.at 
>> wrote:
>>
>>> Do not use a BME280 as an outdoor Sensor, it is not suited for this 
>>> purpose. The operating range is only valid in non-condensing 
>>> environments. 
>>> In condensing environments, especially below freezing point, these 
>>> sensors 
>>> are proven unusable. Go for a SHT3x or SHT4x. 
>>>
>>> Mark Fraser schrieb am Montag, 6. November 2023 um 18:32:59 UTC+1:
>>>
 On 06/11/2023 08:18, tadej.j...@gmail.com wrote: 
 > Hello i have ws2300 station and my humidity sensor probably died. 
 It 
 > only shows values from 70 to 80% .I cannot get replacement part 
 anywhere 
 > because it is not in production anymore and I cannot buy whole 
 new 
 > station because it will be complicated to get all things up 
 running again. 
 > 
 > I was thinking of getting external humidity sensor and hook it to 
 > arduino board and then read humidity values remotely  via 
 crontabs in a 
 > txt file. Is is somehow possible to "trick" weewx to read this 
 value 
 > instead of getting it from station because I am using weewx to 
 calculate 
 > heat index and dew point. 
 Could you use something like BME280WX from here? 
 https://gitlab.com/wjcarpenter/bme280wx 

>>>

-- 
You received this message because you are subscribed to the Google Groups 
"weewx-user" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to weewx-user+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/weewx-user/09ac9b56-5c4e-49f2-9514-c349dab46723n%40googlegroups.com.


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]]
> # 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 
>
> I am getting correct values in extraHumid1 from replacement sensor. I 
> checked database. But outHumidity is stil getting value from dead station 
> sensor.
>
> sreda, 8. november 2023 ob 11:14:14 UTC+1 je oseba tadej.j...@gmail.com 
> napisala:
>
>> 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:
>>
>>> Thanks, I forgot about that! Then I would definitely prefer getting an 
>>> Ecowitt Gateway + outdoor sensor over the replacement part. 
>>>
>>> gjr80 schrieb am Montag, 6. November 2023 um 21:08:54 UTC+1:
>>>
 Not necessary, if the Ecowitt gateway driver can be used it can be run 
 as a data service to augment an existing driver.

 Gary

 On Tuesday, 7 November 2023 at 06:03:39 UTC+10 michael.k...@gmx.at 
 wrote:

> With the ecowitt gateway you need a second weewxd running, as a 
> downside. But you can build a whole new station, step by step, around 
> that 
> gateway (which is probably way to go, sooner or later). 
>
> vince schrieb am Montag, 6. November 2023 um 20:41:08 UTC+1:
>
>> Another option is an ecowitt gateway and their outside T+H sensor, 
>> which integrates well into weewx.  
>>
>> On Monday, November 6, 2023 at 11:19:23 AM UTC-8 michael.k...@gmx.at 
>> wrote:
>>
>>> Do not use a BME280 as an outdoor Sensor, it is not suited for this 
>>> purpose. The operating range is only valid in non-condensing 
>>> environments. 
>>> In condensing environments, especially below freezing point, these 
>>> sensors 
>>> are proven unusable. Go for a SHT3x or SHT4x. 
>>>
>>> Mark Fraser schrieb am Montag, 6. November 2023 um 18:32:59 UTC+1:
>>>
 On 06/11/2023 08:18, tadej.j...@gmail.com wrote: 
 > Hello i have ws2300 station and my humidity sensor probably died. 
 It 
 > only shows values from 70 to 80% .I cannot get replacement part 
 anywhere 
 > because it is not in production anymore and I cannot buy whole 
 new 
 > station because it will be complicated to get all things up 
 running again. 
 > 
 > I was thinking of getting external humidity sensor and hook it to 
 > arduino board and then read humidity values remotely  via 
 crontabs in a 
 > txt file. Is is somehow possible to "trick" weewx to read this 
 value 
 > instead of getting it from station because I am using weewx to 
 calculate 
 > heat index and dew point. 
 Could you use something like BME280WX from here? 
 https://gitlab.com/wjcarpenter/bme280wx 

>>>

-- 
You received this message because you are subscribed to the Google Groups 
"weewx-user" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to weewx-user+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/weewx-user/5e8c726f-9af4-4b9a-90cb-5decf78d0b51n%40googlegroups.com.


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 

I am getting correct values in extraHumid1 from replacement sensor. I 
checked database. But outHumidity is stil getting value from dead station 
sensor.

sreda, 8. november 2023 ob 11:14:14 UTC+1 je oseba tadej.j...@gmail.com 
napisala:

> 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:
>
>> Thanks, I forgot about that! Then I would definitely prefer getting an 
>> Ecowitt Gateway + outdoor sensor over the replacement part. 
>>
>> gjr80 schrieb am Montag, 6. November 2023 um 21:08:54 UTC+1:
>>
>>> Not necessary, if the Ecowitt gateway driver can be used it can be run 
>>> as a data service to augment an existing driver.
>>>
>>> Gary
>>>
>>> On Tuesday, 7 November 2023 at 06:03:39 UTC+10 michael.k...@gmx.at 
>>> wrote:
>>>
 With the ecowitt gateway you need a second weewxd running, as a 
 downside. But you can build a whole new station, step by step, around that 
 gateway (which is probably way to go, sooner or later). 

 vince schrieb am Montag, 6. November 2023 um 20:41:08 UTC+1:

> Another option is an ecowitt gateway and their outside T+H sensor, 
> which integrates well into weewx.  
>
> On Monday, November 6, 2023 at 11:19:23 AM UTC-8 michael.k...@gmx.at 
> wrote:
>
>> Do not use a BME280 as an outdoor Sensor, it is not suited for this 
>> purpose. The operating range is only valid in non-condensing 
>> environments. 
>> In condensing environments, especially below freezing point, these 
>> sensors 
>> are proven unusable. Go for a SHT3x or SHT4x. 
>>
>> Mark Fraser schrieb am Montag, 6. November 2023 um 18:32:59 UTC+1:
>>
>>> On 06/11/2023 08:18, tadej.j...@gmail.com wrote: 
>>> > Hello i have ws2300 station and my humidity sensor probably died. 
>>> It 
>>> > only shows values from 70 to 80% .I cannot get replacement part 
>>> anywhere 
>>> > because it is not in production anymore and I cannot buy whole new 
>>> > station because it will be complicated to get all things up 
>>> running again. 
>>> > 
>>> > I was thinking of getting external humidity sensor and hook it to 
>>> > arduino board and then read humidity values remotely  via crontabs 
>>> in a 
>>> > txt file. Is is somehow possible to "trick" weewx to read this 
>>> value 
>>> > instead of getting it from station because I am using weewx to 
>>> calculate 
>>> > heat index and dew point. 
>>> Could you use something like BME280WX from here? 
>>> https://gitlab.com/wjcarpenter/bme280wx 
>>>
>>

-- 
You received this message because you are subscribed to the Google Groups 
"weewx-user" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to weewx-user+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/weewx-user/0d8984ab-6bb1-4380-8b05-3dc74b41134en%40googlegroups.com.


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:

> Thanks, I forgot about that! Then I would definitely prefer getting an 
> Ecowitt Gateway + outdoor sensor over the replacement part. 
>
> gjr80 schrieb am Montag, 6. November 2023 um 21:08:54 UTC+1:
>
>> Not necessary, if the Ecowitt gateway driver can be used it can be run as 
>> a data service to augment an existing driver.
>>
>> Gary
>>
>> On Tuesday, 7 November 2023 at 06:03:39 UTC+10 michael.k...@gmx.at wrote:
>>
>>> With the ecowitt gateway you need a second weewxd running, as a 
>>> downside. But you can build a whole new station, step by step, around that 
>>> gateway (which is probably way to go, sooner or later). 
>>>
>>> vince schrieb am Montag, 6. November 2023 um 20:41:08 UTC+1:
>>>
 Another option is an ecowitt gateway and their outside T+H sensor, 
 which integrates well into weewx.  

 On Monday, November 6, 2023 at 11:19:23 AM UTC-8 michael.k...@gmx.at 
 wrote:

> Do not use a BME280 as an outdoor Sensor, it is not suited for this 
> purpose. The operating range is only valid in non-condensing 
> environments. 
> In condensing environments, especially below freezing point, these 
> sensors 
> are proven unusable. Go for a SHT3x or SHT4x. 
>
> Mark Fraser schrieb am Montag, 6. November 2023 um 18:32:59 UTC+1:
>
>> On 06/11/2023 08:18, tadej.j...@gmail.com wrote: 
>> > Hello i have ws2300 station and my humidity sensor probably died. 
>> It 
>> > only shows values from 70 to 80% .I cannot get replacement part 
>> anywhere 
>> > because it is not in production anymore and I cannot buy whole new 
>> > station because it will be complicated to get all things up running 
>> again. 
>> > 
>> > I was thinking of getting external humidity sensor and hook it to 
>> > arduino board and then read humidity values remotely  via crontabs 
>> in a 
>> > txt file. Is is somehow possible to "trick" weewx to read this 
>> value 
>> > instead of getting it from station because I am using weewx to 
>> calculate 
>> > heat index and dew point. 
>> Could you use something like BME280WX from here? 
>> https://gitlab.com/wjcarpenter/bme280wx 
>>
>

-- 
You received this message because you are subscribed to the Google Groups 
"weewx-user" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to weewx-user+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/weewx-user/2e465635-de06-439e-9d72-f8c2e0439aa0n%40googlegroups.com.


Re: [weewx-user] Replacement humidity sensor

2023-11-07 Thread michael.k...@gmx.at
Thanks, I forgot about that! Then I would definitely prefer getting an 
Ecowitt Gateway + outdoor sensor over the replacement part. 

gjr80 schrieb am Montag, 6. November 2023 um 21:08:54 UTC+1:

> Not necessary, if the Ecowitt gateway driver can be used it can be run as 
> a data service to augment an existing driver.
>
> Gary
>
> On Tuesday, 7 November 2023 at 06:03:39 UTC+10 michael.k...@gmx.at wrote:
>
>> With the ecowitt gateway you need a second weewxd running, as a downside. 
>> But you can build a whole new station, step by step, around that gateway 
>> (which is probably way to go, sooner or later). 
>>
>> vince schrieb am Montag, 6. November 2023 um 20:41:08 UTC+1:
>>
>>> Another option is an ecowitt gateway and their outside T+H sensor, which 
>>> integrates well into weewx.  
>>>
>>> On Monday, November 6, 2023 at 11:19:23 AM UTC-8 michael.k...@gmx.at 
>>> wrote:
>>>
 Do not use a BME280 as an outdoor Sensor, it is not suited for this 
 purpose. The operating range is only valid in non-condensing environments. 
 In condensing environments, especially below freezing point, these sensors 
 are proven unusable. Go for a SHT3x or SHT4x. 

 Mark Fraser schrieb am Montag, 6. November 2023 um 18:32:59 UTC+1:

> On 06/11/2023 08:18, tadej.j...@gmail.com wrote: 
> > Hello i have ws2300 station and my humidity sensor probably died. It 
> > only shows values from 70 to 80% .I cannot get replacement part 
> anywhere 
> > because it is not in production anymore and I cannot buy whole new 
> > station because it will be complicated to get all things up running 
> again. 
> > 
> > I was thinking of getting external humidity sensor and hook it to 
> > arduino board and then read humidity values remotely  via crontabs 
> in a 
> > txt file. Is is somehow possible to "trick" weewx to read this value 
> > instead of getting it from station because I am using weewx to 
> calculate 
> > heat index and dew point. 
> Could you use something like BME280WX from here? 
> https://gitlab.com/wjcarpenter/bme280wx 
>


-- 
You received this message because you are subscribed to the Google Groups 
"weewx-user" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to weewx-user+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/weewx-user/7ea5462b-111d-4f02-bffe-da9201f97329n%40googlegroups.com.


Re: [weewx-user] Replacement humidity sensor

2023-11-07 Thread michael.k...@gmx.at
Thanks, I forgot about that!

gjr80 schrieb am Montag, 6. November 2023 um 21:08:54 UTC+1:

> Not necessary, if the Ecowitt gateway driver can be used it can be run as 
> a data service to augment an existing driver.
>
> Gary
>
> On Tuesday, 7 November 2023 at 06:03:39 UTC+10 michael.k...@gmx.at wrote:
>
>> With the ecowitt gateway you need a second weewxd running, as a downside. 
>> But you can build a whole new station, step by step, around that gateway 
>> (which is probably way to go, sooner or later). 
>>
>> vince schrieb am Montag, 6. November 2023 um 20:41:08 UTC+1:
>>
>>> Another option is an ecowitt gateway and their outside T+H sensor, which 
>>> integrates well into weewx.  
>>>
>>> On Monday, November 6, 2023 at 11:19:23 AM UTC-8 michael.k...@gmx.at 
>>> wrote:
>>>
 Do not use a BME280 as an outdoor Sensor, it is not suited for this 
 purpose. The operating range is only valid in non-condensing environments. 
 In condensing environments, especially below freezing point, these sensors 
 are proven unusable. Go for a SHT3x or SHT4x. 

 Mark Fraser schrieb am Montag, 6. November 2023 um 18:32:59 UTC+1:

> On 06/11/2023 08:18, tadej.j...@gmail.com wrote: 
> > Hello i have ws2300 station and my humidity sensor probably died. It 
> > only shows values from 70 to 80% .I cannot get replacement part 
> anywhere 
> > because it is not in production anymore and I cannot buy whole new 
> > station because it will be complicated to get all things up running 
> again. 
> > 
> > I was thinking of getting external humidity sensor and hook it to 
> > arduino board and then read humidity values remotely  via crontabs 
> in a 
> > txt file. Is is somehow possible to "trick" weewx to read this value 
> > instead of getting it from station because I am using weewx to 
> calculate 
> > heat index and dew point. 
> Could you use something like BME280WX from here? 
> https://gitlab.com/wjcarpenter/bme280wx 
>


-- 
You received this message because you are subscribed to the Google Groups 
"weewx-user" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to weewx-user+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/weewx-user/55dee9df-2245-4b12-b085-6a8dc216a799n%40googlegroups.com.


Re: [weewx-user] Replacement humidity sensor

2023-11-06 Thread gjr80
Not necessary, if the Ecowitt gateway driver can be used it can be run as a 
data service to augment an existing driver.

Gary

On Tuesday, 7 November 2023 at 06:03:39 UTC+10 michael.k...@gmx.at wrote:

> With the ecowitt gateway you need a second weewxd running, as a downside. 
> But you can build a whole new station, step by step, around that gateway 
> (which is probably way to go, sooner or later). 
>
> vince schrieb am Montag, 6. November 2023 um 20:41:08 UTC+1:
>
>> Another option is an ecowitt gateway and their outside T+H sensor, which 
>> integrates well into weewx.  
>>
>> On Monday, November 6, 2023 at 11:19:23 AM UTC-8 michael.k...@gmx.at 
>> wrote:
>>
>>> Do not use a BME280 as an outdoor Sensor, it is not suited for this 
>>> purpose. The operating range is only valid in non-condensing environments. 
>>> In condensing environments, especially below freezing point, these sensors 
>>> are proven unusable. Go for a SHT3x or SHT4x. 
>>>
>>> Mark Fraser schrieb am Montag, 6. November 2023 um 18:32:59 UTC+1:
>>>
 On 06/11/2023 08:18, tadej.j...@gmail.com wrote: 
 > Hello i have ws2300 station and my humidity sensor probably died. It 
 > only shows values from 70 to 80% .I cannot get replacement part 
 anywhere 
 > because it is not in production anymore and I cannot buy whole new 
 > station because it will be complicated to get all things up running 
 again. 
 > 
 > I was thinking of getting external humidity sensor and hook it to 
 > arduino board and then read humidity values remotely  via crontabs in 
 a 
 > txt file. Is is somehow possible to "trick" weewx to read this value 
 > instead of getting it from station because I am using weewx to 
 calculate 
 > heat index and dew point. 
 Could you use something like BME280WX from here? 
 https://gitlab.com/wjcarpenter/bme280wx 

>>>

-- 
You received this message because you are subscribed to the Google Groups 
"weewx-user" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to weewx-user+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/weewx-user/20eb9a89-f564-4b98-bc28-b369cc6a8b6fn%40googlegroups.com.


Re: [weewx-user] Replacement humidity sensor

2023-11-06 Thread michael.k...@gmx.at
With the ecowitt gateway you need a second weewxd running, as a downside. 
But you can build a whole new station, step by step, around that gateway 
(which is probably way to go, sooner or later). 

vince schrieb am Montag, 6. November 2023 um 20:41:08 UTC+1:

> Another option is an ecowitt gateway and their outside T+H sensor, which 
> integrates well into weewx.  
>
> On Monday, November 6, 2023 at 11:19:23 AM UTC-8 michael.k...@gmx.at 
> wrote:
>
>> Do not use a BME280 as an outdoor Sensor, it is not suited for this 
>> purpose. The operating range is only valid in non-condensing environments. 
>> In condensing environments, especially below freezing point, these sensors 
>> are proven unusable. Go for a SHT3x or SHT4x. 
>>
>> Mark Fraser schrieb am Montag, 6. November 2023 um 18:32:59 UTC+1:
>>
>>> On 06/11/2023 08:18, tadej.j...@gmail.com wrote: 
>>> > Hello i have ws2300 station and my humidity sensor probably died. It 
>>> > only shows values from 70 to 80% .I cannot get replacement part 
>>> anywhere 
>>> > because it is not in production anymore and I cannot buy whole new 
>>> > station because it will be complicated to get all things up running 
>>> again. 
>>> > 
>>> > I was thinking of getting external humidity sensor and hook it to 
>>> > arduino board and then read humidity values remotely  via crontabs in 
>>> a 
>>> > txt file. Is is somehow possible to "trick" weewx to read this value 
>>> > instead of getting it from station because I am using weewx to 
>>> calculate 
>>> > heat index and dew point. 
>>> Could you use something like BME280WX from here? 
>>> https://gitlab.com/wjcarpenter/bme280wx 
>>>
>>

-- 
You received this message because you are subscribed to the Google Groups 
"weewx-user" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to weewx-user+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/weewx-user/e1fffe36-9536-4830-beee-95a706663283n%40googlegroups.com.


Re: [weewx-user] Replacement humidity sensor

2023-11-06 Thread vince
Another option is an ecowitt gateway and their outside T+H sensor, which 
integrates well into weewx.  

On Monday, November 6, 2023 at 11:19:23 AM UTC-8 michael.k...@gmx.at wrote:

> Do not use a BME280 as an outdoor Sensor, it is not suited for this 
> purpose. The operating range is only valid in non-condensing environments. 
> In condensing environments, especially below freezing point, these sensors 
> are proven unusable. Go for a SHT3x or SHT4x. 
>
> Mark Fraser schrieb am Montag, 6. November 2023 um 18:32:59 UTC+1:
>
>> On 06/11/2023 08:18, tadej.j...@gmail.com wrote: 
>> > Hello i have ws2300 station and my humidity sensor probably died. It 
>> > only shows values from 70 to 80% .I cannot get replacement part 
>> anywhere 
>> > because it is not in production anymore and I cannot buy whole new 
>> > station because it will be complicated to get all things up running 
>> again. 
>> > 
>> > I was thinking of getting external humidity sensor and hook it to 
>> > arduino board and then read humidity values remotely  via crontabs in a 
>> > txt file. Is is somehow possible to "trick" weewx to read this value 
>> > instead of getting it from station because I am using weewx to 
>> calculate 
>> > heat index and dew point. 
>> Could you use something like BME280WX from here? 
>> https://gitlab.com/wjcarpenter/bme280wx 
>>
>

-- 
You received this message because you are subscribed to the Google Groups 
"weewx-user" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to weewx-user+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/weewx-user/f10a3811-0990-42b4-a663-ef648e1a760cn%40googlegroups.com.


Re: [weewx-user] Replacement humidity sensor

2023-11-06 Thread michael.k...@gmx.at
Do not use a BME280 as an outdoor Sensor, it is not suited for this 
purpose. The operating range is only valid in non-condensing environments. 
In condensing environments, especially below freezing point, these sensors 
are proven unusable. Go for a SHT3x or SHT4x. 

Mark Fraser schrieb am Montag, 6. November 2023 um 18:32:59 UTC+1:

> On 06/11/2023 08:18, tadej.j...@gmail.com wrote:
> > Hello i have ws2300 station and my humidity sensor probably died. It 
> > only shows values from 70 to 80% .I cannot get replacement part anywhere 
> > because it is not in production anymore and I cannot buy whole new 
> > station because it will be complicated to get all things up running 
> again.
> > 
> > I was thinking of getting external humidity sensor and hook it to 
> > arduino board and then read humidity values remotely  via crontabs in a 
> > txt file. Is is somehow possible to "trick" weewx to read this value 
> > instead of getting it from station because I am using weewx to calculate 
> > heat index and dew point.
> Could you use something like BME280WX from here?
> https://gitlab.com/wjcarpenter/bme280wx
>

-- 
You received this message because you are subscribed to the Google Groups 
"weewx-user" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to weewx-user+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/weewx-user/0fb62ecb-f618-4807-a9c4-87704814306cn%40googlegroups.com.


Re: [weewx-user] Replacement humidity sensor

2023-11-06 Thread Mark Fraser

On 06/11/2023 08:18, tadej.j...@gmail.com wrote:
Hello i have ws2300 station and my humidity sensor probably died. It 
only shows values from 70 to 80% .I cannot get replacement part anywhere 
because it is not in production anymore and I cannot buy whole new 
station because it will be complicated to get all things up running again.


I was thinking of getting external humidity sensor and hook it to 
arduino board and then read humidity values remotely  via crontabs in a 
txt file. Is is somehow possible to "trick" weewx to read this value 
instead of getting it from station because I am using weewx to calculate 
heat index and dew point.

Could you use something like BME280WX from here?
https://gitlab.com/wjcarpenter/bme280wx

--
You received this message because you are subscribed to the Google Groups 
"weewx-user" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to weewx-user+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/weewx-user/e6106e0e-6dbf-4844-867c-70bf5796ad75%40gmail.com.


[weewx-user] Replacement humidity sensor

2023-11-06 Thread tadej.j...@gmail.com
Hello i have ws2300 station and my humidity sensor probably died. It only 
shows values from 70 to 80% .I cannot get replacement part anywhere because 
it is not in production anymore and I cannot buy whole new station because 
it will be complicated to get all things up running again.

I was thinking of getting external humidity sensor and hook it to arduino 
board and then read humidity values remotely  via crontabs in a txt file. 
Is is somehow possible to "trick" weewx to read this value instead of 
getting it from station because I am using weewx to calculate heat index 
and dew point.

-- 
You received this message because you are subscribed to the Google Groups 
"weewx-user" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to weewx-user+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/weewx-user/85f2734f-52d5-414d-81f6-2e2badbb2643n%40googlegroups.com.