[weewx-user] Re: ExtraTemp1 as Outside Temperature

2022-01-29 Thread matthew wall
you can do this in the weewx configuration file using the 'sensor_map' in the TE923 section. the default sensor map looks like this (you should see this in your weewx configuration file, but it is probably commented, since it is the default behavior): [TE923] ... [[sensor_map]]

[weewx-user] Re: ExtraTemp1 as Outside Temperature

2022-01-29 Thread Søren Helskov
Hi Thanks Michael Was really helpful and solved my problem. I was really looking in the documentation here https://www.weewx.com/ but found nothing. :( Best Regards. lørdag den 29. januar 2022 kl. 11.37.42 UTC+1 skrev Michael: > In the directory /usr/share/weewx/weewx/drivers you should find

[weewx-user] Re: ExtraTemp1 as Outside Temperature

2022-01-29 Thread Michael
In the directory /usr/share/weewx/weewx/drivers you should find the file te923.py. From line 473 you will find the mappings starting with DEFAULT_MAP = { ... 'outTemp': 't_1', 'outHumidity': 'h_1', 'extraTemp1': 't_2', 'extraHumidity1': 'h_2', by: 'outTemp': 't_2', 'outH

[weewx-user] Re: ExtraTemp1 as Outside Temperature

2022-01-29 Thread Søren Helskov
>From the driver: I Would like to Map t_2 to Outside Temperature Where are all these mapped? Using configuration file /etc/weewx/weewx.conf Using TE923 driver version 0.41.1 (weewx.drivers.te923) Querying the station for current weather data... dateTime: 1643449936 forecast: 5

Re: [weewx-user] Re: ExtraTemp1

2019-02-02 Thread John Masters
Yes tk, i have followed the instructions and added FilePile via your manual method. Hey Presto, no more spikes on the graph! Your code has cracked it, many thanks: the RECs are correctly showing extraTemp1: john@pyzero:/home/weewx $ sudo bin/weewxd weewx.conf REC:2019-02-02 19:50:13 GMT (1

Re: [weewx-user] Re: ExtraTemp1

2019-02-02 Thread Thomas Keffer
I have created an extension, FilePile , that automates a lot of this. You specify what unit system your incoming data is in, and it will automatically convert it to the unit system used by the incoming record. Take a look at the README and see if everything is

[weewx-user] Re: ExtraTemp1

2019-02-02 Thread John Masters
Yes Folks, @Gary, that's explained a likely cause, thanks for taking the time to investigate. Something like the Mars Climate Orbiter, but a lot less critical! @tk, Yes, but i want to put to bed the idea that my temperature sensor is randomly switching from degrees_F to degrees_C by itself. T

Re: [weewx-user] Re: ExtraTemp1

2019-02-01 Thread gjr80
Yes the rule of thumb is check your units before adding anything to a packet or record. I think the real catch here is as you pointed out, the apparent changing of the units by the driver. Do wonder how many folks have code such as this, safe enough I guess until the holes in the cheese align.

Re: [weewx-user] Re: ExtraTemp1

2019-02-01 Thread Thomas Keffer
Seems like a reasonable theory. But, it still comes down to the same conclusion: you must make sure the unit system of the thing you're adding matches the unit system of the thing you're adding it to. The pond example should be modified so that its configuration stanza specifies what unit system

Re: [weewx-user] Re: ExtraTemp1

2019-02-01 Thread gjr80
Oh, and needless to say I really think we need to change that wiki post, even with the units warning you added Tom. Happy to deal with that when I am back on my PC. Gary -- You received this message because you are subscribed to the Google Groups "weewx-user" group. To unsubscribe from this g

Re: [weewx-user] Re: ExtraTemp1

2019-02-01 Thread gjr80
This has been puzzling me, in particular as it seems that as simplistic as pond.py is (ie it is not units aware) using extraTemp1 in either units is causing a conversion error. Now that we have some config details I think I am starting to understand what is happening. In a nutshell I think this

Re: [weewx-user] Re: ExtraTemp1

2019-02-01 Thread Thomas Keffer
Well, it's possible that the unit system used by the records changes record to record. Some weather stations do that. You'll have to check and correct as necessary. -tk On Fri, Feb 1, 2019 at 1:11 PM John Masters wrote: > Ok tk, i will try again tomorrow - maybe sleep will help! Sorry for bei

Re: [weewx-user] Re: ExtraTemp1

2019-02-01 Thread John Masters
Ok tk, i will try again tomorrow - maybe sleep will help! Sorry for being a dozey old fool. I can only send the temp to weewx either as degrees_F or degrees_C.and have tried both, and have changed nothing else. There was a fabulous crescent moon with Jupiter and Venus in the black sky this morni

Re: [weewx-user] Re: ExtraTemp1

2019-02-01 Thread Thomas Keffer
> > I am trying! I thought you suggested i should send weewx the temperature > in degrees_C. I have changed nothing else. > I am saying that whatever unit system you are using should match the unit system in the record. Its true i have been around the sun quite a few times. I also remember > poun

Re: [weewx-user] Re: ExtraTemp1

2019-02-01 Thread John Masters
I am trying! I thought you suggested i should send weewx the temperature in degrees_C. I have changed nothing else. Its true i have been around the sun quite a few times. I also remember pounds shillings and pence! regards john -- You received this message because you are subscribed to the Goog

Re: [weewx-user] Re: ExtraTemp1

2019-02-01 Thread Thomas Keffer
Centigrade? You must be as old as I am! 😀 John, earlier you said the values in pond.txt were in Fahrenheit (for example, this post ), but clearly this one is not. It's in Celsius. You need to step back and take a look at what yo

Re: [weewx-user] Re: ExtraTemp1

2019-02-01 Thread John Masters
No tk, pond.txt contains 3.8 (centigrade), now weewx is ploting it as minus 15.8.(which is 3.8f converted to centigrade) -- 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 ema

Re: [weewx-user] Re: ExtraTemp1

2019-02-01 Thread Thomas Keffer
Well, that's an improvement, but it looks like the second record got too small a value: 3.8. If you run with debug=1 and look in the log, it will show you what values pond.py read from the file. Do they match your expectations? -tk On Fri, Feb 1, 2019 at 11:32 AM John Masters wrote: > OK, now

Re: [weewx-user] Re: ExtraTemp1

2019-02-01 Thread John Masters
> > OK, now i changed the pond.txt to Centigade values >> > > 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+...@googlegroups.com . >> For more

Re: [weewx-user] Re: ExtraTemp1

2019-02-01 Thread Thomas Keffer
At this point, all I can do is repeat what I've already said: you must make sure the unit system of the incoming value from pond.txt matches the unit system in the record. The incoming value is in US Customary, but the record is in metric. -tk On Fri, Feb 1, 2019 at 10:55 AM John Masters wrote:

Re: [weewx-user] Re: ExtraTemp1

2019-02-01 Thread John Masters
I ran weewx as suggested and have attached the output etc. Now i can see in pond.py line 19 in my file reads: except Exception, e: Whereas in the Wiki it reads: except Exception as e: Regards John -- You received this message because you are sub

Re: [weewx-user] Re: ExtraTemp1

2019-01-31 Thread John Masters
Thanks Andrew, will do so when i get back tonight -- 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. For more options, visit

Re: [weewx-user] Re: ExtraTemp1

2019-01-31 Thread Andrew Milner
Use debug mode and post the output of running from the command line as well as the log from startup until two archive records have passed and we may well be able to figure. It may also help to see the contents of 'pondservice' you are using and weewx.conf (with any sensitive info removed) to en

Re: [weewx-user] Re: ExtraTemp1

2019-01-31 Thread John Masters
Um, but firstly i tried sending centigrade values, which is what the sensor outputs natively, and got as per first post: "Presently the file shows 4.8, whereas in Current conditions, the temp is displayed at -15.1." -15.1 is 4.8 Fahrenheit And then on changing the values in pond.txt to Fahrenhei

Re: [weewx-user] Re: ExtraTemp1

2019-01-31 Thread Thomas Keffer
I've modified the Wiki . John: StdQC will not help you here. You must make sure the units in pond.txt matches the units used in the WeeWX records. -tk On Thu, Jan 31, 2019 at 6:11 AM John Masters wrote: > Thanks guys, i will handle it with stdQC

Re: [weewx-user] Re: ExtraTemp1

2019-01-31 Thread John Masters
Thanks guys, i will handle it with stdQC and not dig too deep! What is curious to me is that after the initial two reads it works correctly without me changing anything. Tis a small thing in a big world. I might try the new beta. If anyone can break it, it'll be me! Oh no i hear you say. Regards

Re: [weewx-user] Re: ExtraTemp1

2019-01-31 Thread gjr80
On Thursday, 31 January 2019 23:35:11 UTC+10, Thomas Keffer wrote: > > I don't know what is in "PondService", > It's in the wiki (as per link in John's first post), probably not the best example as there is no mention of properly handling units anywhere in the article. Another one to add to the

Re: [weewx-user] Re: ExtraTemp1

2019-01-31 Thread Thomas Keffer
I don't know what is in "PondService", but I suspect that it is adding your pond temperature, which is in Fahrenheit, to a record, which is in Metric. Your database is in US Customary, so WeeWX is dutifully converting the record to US before putting it in the database. (Note that 39.2 C is 102.56

Re: [weewx-user] Re: ExtraTemp1

2019-01-31 Thread Andrew Milner
1. Is your database US or METRIC or METRICWX?? 2. If you are using the unmodified ponds service then I think that the way it works is to assume the temperature in the file is the same units as specified by database type. ie it does no conversions on the data. I am sure a conversion could be pu

Re: [weewx-user] Re: ExtraTemp1

2019-01-31 Thread John Masters
Hi I decided to stop the data being transferred from the remote RPi, and to restart weewx with var/tmp/pond.txt containing a static value. To that effect i did the following on the Rpi to which the temperature sensor is connected (fishcam): john@fishcam:~ $ crontab -e, comment out scp Next i r

Re: [weewx-user] Re: ExtraTemp1

2019-01-30 Thread John Masters
Sorry tk i am obviously not explaining it well. I shall start again tomorrow with a clear head. Anyway, thanks so much for such a super software, and for supporting it so well. In my book, you are a real Star. Regards John -- You received this message because you are subscribed to the Google Gr

Re: [weewx-user] Re: ExtraTemp1

2019-01-30 Thread Thomas Keffer
You lost me. Is everything working now? Or, are you still having a problem? If you're sure the data is OK on the remote RPi, and it's not OK in the WeeWX database, then, obviously, it got corrupted somewhere along the way. -tk On Wed, Jan 30, 2019 at 3:04 PM John Masters wrote: > Ok, will im

[weewx-user] Re: ExtraTemp1

2019-01-30 Thread John Masters
Ok, will implement StdQC. The 1-wire temperature sensor is connected to a remote RPI which logs the readings to a mysql database, and produces a graph (see below). That is all working without error. I use a cron job to convert to Fahrenheit and write the temperature to a file pond.txt, and scp

Re: [weewx-user] Re: ExtraTemp1

2019-01-30 Thread Thomas Keffer
The timestamps for the high extraTemp1 values are 1548874319 and 1548874619. Unfortunately, you didn't include enough of the log to see those timestamps, but they probably came right off your instrument. You are adding bad values as fast as you are removing them. You need to use the StdQC

[weewx-user] Re: ExtraTemp1

2019-01-30 Thread John Masters
On Wednesday, January 30, 2019 at 7:18:34 PM UTC, John Masters wrote: > > Thanks for reply Tom, > I did this: > sudo /etc/init.d/weewx stop > cp /home/weewx/archive/weewx.sdb /var/tmp/backup.sdb > echo "UPDATE archive SET extraTemp1=NULL WHERE (extraTemp1 > 50);" | > sqlite3 /var/tmp/backup.sdb

[weewx-user] Re: ExtraTemp1

2019-01-30 Thread John Masters
Thanks for reply Tom, I did this: sudo /etc/init.d/weewx stop cp /home/weewx/archive/weewx.sdb /var/tmp/backup.sdb echo "UPDATE archive SET extraTemp1=NULL WHERE (extraTemp1 > 50);" | sqlite3 /var/tmp/backup.sdb sudo cp /var/tmp/backup.sdb /home/weewx/archive/weewx.sdb sudo /etc/init.d/weewx star

Re: [weewx-user] Re: ExtraTemp1

2019-01-30 Thread Thomas Keffer
The plot data are taken directly from the database, so there must still be a bad point in there. To find, see the Wiki article *Clean up old 'bad' data .* -tk On Wed, Jan 30, 2019 at 8:35 AM John Masters wrote: > Well, i found my m

[weewx-user] Re: ExtraTemp1

2019-01-30 Thread John Masters
Well, i found my mistake - Weewx was set to accept Fahrenheit units! I changed the script to convert the data to Fahrenheit before sending it, and now the extraTemp1 displays Pond Temperature correctly. Next i deleted out the spurious data from the database and restarted weewx (as per wiki). Fi

[weewx-user] Re: ExtraTemp1

2019-01-27 Thread John Masters
On Sunday, January 27, 2019 at 8:22:57 PM UTC, John Masters wrote: > > Hi Folks, > > I have had success installing an extra temperature sensor, and Weewx is > displaying the value from /var/tmp/pond.txt (the sensor is on a remote RPi) > as suggested in > https://github.com/weewx/weewx/wiki/add-

[weewx-user] Re: ExtraTemp1

2018-12-29 Thread vince
On Saturday, December 29, 2018 at 4:39:17 PM UTC-8, Tom Robertson wrote: > > I have a Davis Vantage 2 with the extra sensor. I am running weewx on a > RPI. I see the extra temp sensor value show up in my Meteotemplate web > page so I know it is being sent. When I look at the weex DB I see the

Re: [weewx-user] Re: extraTemp1 doesn't allow Corrections?

2018-05-06 Thread Andrew Milner
I do not know where you got the original pond.py from - but as long as it is in the user directory weewx should not change it during any upgrades. To be sure keep a copy in your personal area outside the weewx directory structure just in case!! I took the nasty option route - so it assumes the fil

Re: [weewx-user] Re: extraTemp1 doesn't allow Corrections?

2018-05-06 Thread Jens-Jørgen Kjærgaard
It works! After running your pond.py for some hours, it works perfectly, the corrections also! Thank you for helping out in this to an amateur in python. But I will have to use your pond.py after a future upgrade of weewx - or will it be included? Jens-Jørgen Kjærgaard Tuenvej 818 9870 Sindal +45

Re: [weewx-user] Re: extraTemp1 doesn't allow Corrections?

2018-05-06 Thread Andrew Milner
try the attached version (after renaming it of course!!) On Sunday, 6 May 2018 17:04:09 UTC+3, Jens-Jørgen Kjærgaard wrote: > > Thank you for a elaborate and understandable answer. > However, I think I am beyond using either solution - as my knowledge of > python is a little less than basic

Re: [weewx-user] Re: extraTemp1 doesn't allow Corrections?

2018-05-06 Thread Jens-Jørgen Kjærgaard
Thank you for a elaborate and understandable answer. However, I think I am beyond using either solution - as my knowledge of python is a little less than basic :). For your info, I add my present weewx.conf, soetemp.py and pond.py Jens-Jørgen Kjærgaard Tuenvej 818 9870 Sindal +45 21204417 www.j

Re: [weewx-user] Re: extraTemp1 doesn't allow Corrections?

2018-05-06 Thread gjr80
Herein lies the problem of augmenting a loop packet or archive record when it is done 'on the cheap'. Each packet or record has a field, usUnits, that indicates the unit system used in the packet/record; in simple terms it tells us whether the temperature fields are F or C. The unit system used

Re: [weewx-user] Re: extraTemp1 doesn't allow Corrections?

2018-05-06 Thread Jens-Jørgen Kjærgaard
/var/tmp/pond.txt is a simple txt file with 52.1 - nothing else. I tried the change in pond.py from read() to readline (). Will come back with result. Omitting my limits of 30,80 gives 38.4 in the output - corresponding to 100 F. So where the 52.1 goes or comes from, I don't know. Jens-Jørgen Kjær

Re: [weewx-user] Re: extraTemp1 doesn't allow Corrections?

2018-05-06 Thread Andrew Milner
you could also try and change the read() in pond.py to readline() - would really like to know what is actually in the file / the format of the file that you are reading though!! in fact even the 52.1 is suspect - since 11.1 converts to 51.2 not 52.1!! On Sunday, 6 May 2018 13:34:06 UTC+3, And

Re: [weewx-user] Re: extraTemp1 doesn't allow Corrections?

2018-05-06 Thread Andrew Milner
you could also try and change the read() in pond.py to readline() - would really like to know what is actually in the file / the format of the file that you are reading though!! On Sunday, 6 May 2018 13:34:06 UTC+3, Andrew Milner wrote: > > I'm pretty sure that is the reason, but not sure how to

Re: [weewx-user] Re: extraTemp1 doesn't allow Corrections?

2018-05-06 Thread Andrew Milner
I'm pretty sure that is the reason, but not sure how to correct it!! the 52.1 is obviously a farenheit reading in the file - but what is actually in /var/tmp/pond.txt?? Is there a newline or other data on the end?? I'm not too sure where the 100.624 is coming from at the moment On Sunda

Re: [weewx-user] Re: extraTemp1 doesn't allow Corrections?

2018-05-06 Thread Jens-Jørgen Kjærgaard
I think some information may be in this from syslog: May 6 11:44:48 raspberrypi weewx[2073]: pond: found value of 52.1 May 6 11:44:48 raspberrypi weewx[2073]: engine: 2018-05-06 11:44:48 CEST (1525599888) LOOP value 'extraTemp1' 100.624 outside limits (30.0, 80.0) May 6 11:45:48 raspberrypi wee

Re: [weewx-user] Re: extraTemp1 doesn't allow Corrections?

2018-05-06 Thread Andrew Milner
Gary - I'm lost now. Was my change not correct?? - or do you also have to add the field into the rec as well as the loop Jens - what do you see in LOOP and REC data if you run weewx directly from command line, rather than as a daemon? On Sunday, 6 May 2018 12:08:48 UTC+3, Jens-Jørgen Kjærg

Re: [weewx-user] Re: extraTemp1 doesn't allow Corrections?

2018-05-06 Thread Jens-Jørgen Kjærgaard
Did that - ufortunately, my lake temperature (extraTemp1) now shows up as N/A ? Jens-Jørgen Kjærgaard Tuenvej 818 9870 Sindal +45 21204417 www.jensjk.dk 2018-05-06 9:29 GMT+02:00 Andrew Milner : > In pond.py > > change > self.bind(weewx.NEW_ARCHIVE_RECORD, self.read_file) > to > self.bind(weewx.

Re: [weewx-user] Re: extraTemp1 doesn't allow Corrections?

2018-05-06 Thread Andrew Milner
In pond.py change self.bind(weewx.NEW_ARCHIVE_RECORD, self.read_file) to self.bind(weewx.NEW_LOOP_PACKET, self.read_file) and event.record['extraTemp1'] = float(value) to event.packet['extraTemp1'] = float(value) which will insert the pond temp into every loop packet and thence to the record

Re: [weewx-user] Re: extraTemp1 doesn't allow Corrections?

2018-05-06 Thread Jens-Jørgen Kjærgaard
These hasn't been modified by me, though: Jens-Jørgen Kjærgaard Tuenvej 818 9870 Sindal +45 21204417 www.jensjk.dk 2018-05-06 8:50 GMT+02:00 Andrew Milner : > yes I did indeed!! sorry - user/pond.py we need to see > > > > On Sunday, 6 May 2018 09:48:57 UTC+3, gjr80 wrote: >> >> I think you mean

Re: [weewx-user] Re: extraTemp1 doesn't allow Corrections?

2018-05-05 Thread Andrew Milner
yes I did indeed!! sorry - user/pond.py we need to see On Sunday, 6 May 2018 09:48:57 UTC+3, gjr80 wrote: > > I think you mean user/pond.py, PondService should be a class in > user/pond.py. > > Gary > -- You received this message because you are subscribed to the Google Groups "weewx-user" g

Re: [weewx-user] Re: extraTemp1 doesn't allow Corrections?

2018-05-05 Thread gjr80
I think you mean user/pond.py, PondService should be a class in user/pond.py. Gary -- 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...@googlegr

Re: [weewx-user] Re: extraTemp1 doesn't allow Corrections?

2018-05-05 Thread Andrew Milner
gary - the .conf says software generation and I suspect the pondservice will be rec bound - hence the OP's problem. On Sunday, 6 May 2018 09:46:34 UTC+3, Andrew Milner wrote: > > we need to see user/pond/pondservice.py also rather than soetemp.py > > > > On Sunday, 6 May 2018 09:40:32 UTC+3, Je

Re: [weewx-user] Re: extraTemp1 doesn't allow Corrections?

2018-05-05 Thread Andrew Milner
we need to see user/pond/pondservice.py also rather than soetemp.py On Sunday, 6 May 2018 09:40:32 UTC+3, Jens-Jørgen Kjærgaard wrote: > > Here they are: > > Jens-Jørgen Kjærgaard > Tuenvej 818 > 9870 Sindal > +45 21204417 > www.jensjk.dk > > 2018-05-06 8:31 GMT+02:00 gjr80 >: > >> The correctio

Re: [weewx-user] Re: extraTemp1 doesn't allow Corrections?

2018-05-05 Thread Jens-Jørgen Kjærgaard
Here they are: Jens-Jørgen Kjærgaard Tuenvej 818 9870 Sindal +45 21204417 www.jensjk.dk 2018-05-06 8:31 GMT+02:00 gjr80 : > The correction is always applied to loop and only to archive when using > hardware record generation (otherwise you would correct twice). If the OP > is using hardware reco

Re: [weewx-user] Re: extraTemp1 doesn't allow Corrections?

2018-05-05 Thread gjr80
The correction is always applied to loop and only to archive when using hardware record generation (otherwise you would correct twice). If the OP is using hardware record generation and the pond service is loop based, then yes that could cause the problem, but if that was the case I would not ex

Re: [weewx-user] Re: extraTemp1 doesn't allow Corrections?

2018-05-05 Thread Jens-Jørgen Kjærgaard
gjr80: yes, I have restarted several times. Andrew: I don't know about loop or rec? Jens-Jørgen Kjærgaard Tuenvej 818 9870 Sindal +45 21204417 www.jensjk.dk 2018-05-06 8:21 GMT+02:00 Andrew Milner : > Just some thoughts > a) Is pondtemp bound to loop or rec?? > b) Gary - is the correction ap

Re: [weewx-user] Re: extraTemp1 doesn't allow Corrections?

2018-05-05 Thread Andrew Milner
Just some thoughts a) Is pondtemp bound to loop or rec?? b) Gary - is the correction applied to loop or rec packets? (It cannot be to both!!) I suspect to loop, and I suspect pondtemp is bound to rec. just my suspicions …. On Sunday, 6 May 2018 08:52:34 UTC+3, gjr80 wrote: > > Yes that s

Re: [weewx-user] Re: extraTemp1 doesn't allow Corrections?

2018-05-05 Thread gjr80
Yes that should cause a noticeable change. Just to check another obvious one, you have restarted weeWX or done a config reload after making a change to weewx.conf? Gary -- You received this message because you are subscribed to the Google Groups "weewx-user" group. To unsubscribe from this gr

Re: [weewx-user] Re: extraTemp1 doesn't allow Corrections?

2018-05-05 Thread Jens-Jørgen Kjærgaard
Yes, user.pond.Service is adding extraTemp1. Even if I change the correction to an extreme, say extraTemp1 = extraTemp1 - 10.0, the output remains the same. Jens-Jørgen Kjærgaard Tuenvej 818 9870 Sindal +45 21204417 www.jensjk.dk 2018-05-06 7:24 GMT+02:00 gjr80 : > I am guessing that user.pond.P

[weewx-user] Re: extraTemp1 doesn't allow Corrections?

2018-05-05 Thread gjr80
I am guessing that user.pond.PondService is what is adding extraTemp1 to your data? If so there is no need to change anything, all would appear in the right order. What diagnostics have you done to show it is not working, are you sure you are not looking at the already corrected value? Gary -

[weewx-user] Re: extraTemp1 doesn't allow Corrections?

2018-05-05 Thread Jens-Jørgen Kjærgaard
My [Engine] [[Services]]: prep_services = weewx.engine.StdTimeSynch data_services = user.pond.PondService, process_services = weewx.engine.StdConvert, weewx.engine.StdCalibrate, weewx.engine.StdQC, weewx.wxservices.StdWXCalculate archive_services = weewx.engine.StdArchiv

[weewx-user] Re: extraTemp1 instead of outTemp sensor

2017-02-23 Thread juergen . d . neumann
Thanks for the help, initializing extraTemp with 0 worked fine, hope that removing that line will work when the new sensor is delivered in a couple of days :) > you could try this: > > [[Corrections]] > extraTemp1 = 0 > outTemp = extraTemp1 > > then comment out the 'extraTemp1 = 0' whe

[weewx-user] Re: extraTemp1 instead of outTemp sensor

2017-02-23 Thread mwall
On Thursday, February 23, 2017 at 12:22:49 PM UTC-5, juergen wrote: > > any idea how I can replace the outTemp value with the value of the extra > sensor? > Do I need to connect the sensor firs or do I need to edit a different whew > file where sensor setups are don? > you could try this: [[Cor

Re: [weewx-user] Re: extraTemp1 units wrong

2017-02-18 Thread Clay Jackson
Yeah, turns out the sensor is bad :-) Called Acurite, I gave them the QC code and they said "We'll send you a new one" Sent from my iPhone Clay Jackson > On Feb 18, 2017, at 7:35 AM, mwall wrote: > > > >> On Monday, February 13, 2017 at 7:14:55 PM UTC-5, Clay Jackson wrote: >> Trying to us

[weewx-user] Re: extraTemp1 units wrong

2017-02-18 Thread mwall
On Monday, February 13, 2017 at 7:14:55 PM UTC-5, Clay Jackson wrote: > > Trying to use an Acurite Lightning Sensor in my greenhouse as extraTemp1. > > > > I changed all of .tmpl files from “Pond” to Grenhouse (did not change the > var names) and the graph/texts are showing up fine; BUT., th