Re: [weewx-user] Re: Steel Gauges question

2018-10-20 Thread gjr80
Ok, I see. Simple solution is to just display C, but I am guessing that is not 
a practical solution for you :)

Seriously, I believe the issue is due to the absence of numeric values for 
windchill and heatindex. I would have to look at the auto scale routines in the 
SteelSeries Gauges code but I suspect lack of windchill and heatindex messes up 
the temperature auto scale calculations when changing units. I guess that takes 
us back to my second point from my last post; have you made any changes to how 
windchill and heatindex are stored? The default weeWX approach is to track 
outTemp when the temperature and wind conditions are not met.

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...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[weewx-user] APRS World Wind Data Logger with WeeWx

2018-10-20 Thread gjr80
Hi Roy,

No I have not seen or heard of the device but it sounds like it would be an 
interesting project to develop a driver. How are your python skills as yes, you 
will need to write a custom driver. The driver itself would not need to be that 
complex; it would just need to receive serial data from the logger, 
parse/convert the data, construct a WeeWX loop packet and finally emit the loop 
packet. All of these things have already been done in one WeeWX driver or 
another. 

Where things will get interesting is developing a flexible config section for 
the driver so the user can specify what sensors are present, how to derive an 
observation from a sensor and how to assign sensors to WeeWX fields.

You will find the 'Porting to new hardware' section 
(http://weewx.com/docs/customizing.htm#porting) of the Customization Guide 
(http://weewx.com/docs/customizing.htm) helpful. You might also want to look at 
some of the existing drivers 
(https://github.com/weewx/weewx/tree/master/bin/weewx/drivers) included with 
weeWX. The Vantage driver certainly does some serial comms as do a number of 
others. The fileparse driver 
(https://github.com/weewx/weewx/tree/master/examples/fileparse) reads simple 
formatted data from a file. And I didn't even mention any reading to 
improve/develop your python skills.

Probably a bit of reading to do...

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...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [weewx-user] Re: Steel Gauges question

2018-10-20 Thread Steve Meltz
Gary..if you switch to Fahrenheit, look at the scale on the gauges:


[image: image.png]

On Sat, Oct 20, 2018 at 10:01 PM gjr80  wrote:

> Steve,
>
> Your post highlights two issues; the temperature gauge and windchill. When
> I look at your site just now the temperature gauge is displaying 27.1C for
> both inside and outside temperature. Other than both obs being the same
> value I see nothing unusual. Changing between inside and outside works
> fine. If I look at your gauge-data.txt temp and intemp are both 27.1. The
> mouse over plots look ok and appear consistent with the gauge displays at
> the moment. Have I missed something obvious, or is the a different meaning
> to 'wonky' over your way :)
>
> Wind chill wise your gauge-data.txt is showing N/A for windchill and the
> gauges are displaying that as -20C. So the issue is with the windchill
> value in gauge-data.txt. The use of .raw or .formatted is of no
> consequence, .raw will display windchill with a whole lot of decimal
> places, .formatted will format windchill as per skin.conf/weewx.conf
> (typically 1 decimal place) without a unit label. If I look at your main
> page I see windchill is 'Undefined: T>50 F or V<=3 mph' (would seem to tie
> in with N/A in gauge-data.txt) so I suspect the SteelSeries Gauges
> extension is not the issue. I am guessing the narrative about T and V is
> just some formatting you have added to index.html.tmpl or is there
> something else you have changed re windchill?
>
> Gary
>
> --
> You received this message because you are subscribed to a topic in the
> Google Groups "weewx-user" group.
> To unsubscribe from this topic, visit
> https://groups.google.com/d/topic/weewx-user/BNTMCfeC30E/unsubscribe.
> To unsubscribe from this group and all its topics, send an email to
> weewx-user+unsubscr...@googlegroups.com.
> For more options, visit https://groups.google.com/d/optout.
>

-- 
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 https://groups.google.com/d/optout.


[weewx-user] Re: WeatherLink and wlink driver not pulling data

2018-10-20 Thread gjr80
Hi,

Perhaps /usr/share/weewx/user ? Refer to where to find things 
(http://weewx.com/docs/usersguide.htm#Where_to_find_things) in the User's Guide.

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...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [weewx-user] Re: Steel Gauges question

2018-10-20 Thread gjr80
Steve,

Your post highlights two issues; the temperature gauge and windchill. When I 
look at your site just now the temperature gauge is displaying 27.1C for both 
inside and outside temperature. Other than both obs being the same value I see 
nothing unusual. Changing between inside and outside works fine. If I look at 
your gauge-data.txt temp and intemp are both 27.1. The mouse over plots look ok 
and appear consistent with the gauge displays at the moment. Have I missed 
something obvious, or is the a different meaning to 'wonky' over your way :)

Wind chill wise your gauge-data.txt is showing N/A for windchill and the gauges 
are displaying that as -20C. So the issue is with the windchill value in 
gauge-data.txt. The use of .raw or .formatted is of no consequence, .raw will 
display windchill with a whole lot of decimal places, .formatted will format 
windchill as per skin.conf/weewx.conf (typically 1 decimal place) without a 
unit label. If I look at your main page I see windchill is 'Undefined: T>50 F 
or V<=3 mph' (would seem to tie in with N/A in gauge-data.txt) so I suspect the 
SteelSeries Gauges extension is not the issue. I am guessing the narrative 
about T and V is just some formatting you have added to index.html.tmpl or is 
there something else you have changed re windchill?

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...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [weewx-user] Vantage Vue wind cup size setting with wee_device

2018-10-20 Thread Thomas Keffer
Thanks, Philip. That's the first reference I've seen to "Vue" cups. As I
said, you'd have to ask Davis.

But, in any case, don't worry about it. Only under extraordinary
circumstances do you need to set it.

-tk

On Sat, Oct 20, 2018 at 6:51 PM Philip Kutzenco  wrote:

> Thomas,
>
> Thanks for the reply. I won't worry about it. The reason I asked is that
> the help file for Davis' Weatherlink software shows three options. See the
> attached screen shot I took for setting that in the console with
> Weatherlink. Evidently, you can set a VantagePro to use small cups or
> Vue/Other cups. I'll just leave the value as it is set in the console
> without setting it explicitly.
> phil
>
> On Saturday, October 20, 2018 at 8:22:26 PM UTC-4, Thomas Keffer wrote:
>>
>> A Vantage (whether a Vue or a VantagePro) ships with a value in the
>> EEPROM firmware that matches its cup size. Unless you change the cups,
>> there is no reason to mess with this value. The wee_device utility option
>> is there if, for some reason, you have to change the cups.
>>
>> To answer your question, the Davis documentation lists only two sizes:
>> small and large. If there's a third "Vue" sized, I haven't heard of it.
>> You'd have to ask Davis.
>>
>> -tk
>>
>> On Sat, Oct 20, 2018 at 7:35 AM Philip Kutzenco 
>> wrote:
>>
>>> Now that I have my external website operational (https://wx.kutzenco.com)
>>> with a Mosquitto MQTT broker and Belchertown skin, I'm spending a bit more
>>> time reviewing the weeWX documentation to get a deeper understanding of my
>>> system. I'm hoping to do some customization.
>>>
>>> I have a Davis Vantage Vue weather station and weeWX running on a
>>> Raspberry Pi Zero W. I see that the Davis Weatherlink software gives the
>>> options for wind cup size as Small, Large or Vue/Other. That Davis
>>> documentation says that Vantage Pro systems generally ship with large cups,
>>> and that (obviously) Vantage Vue systems ship with Vue cups.
>>>
>>> The wee_device --help command mentions only Small and Large options for
>>> wind cup size. Is there an option for Vue/other cups? I don't know what is
>>> adjusted in the readings/calculations by specifying different cup sizes. I
>>> didn't see that called out in the weeWX documention. I suspect the
>>> difference is minimal, but, just to ensure that everything can be set
>>> properly with weeWX does that option need to be added to wee_device for
>>> Vantage systems, if it isn't there?
>>>
>>> phil
>>>
>>> --
>>> 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 options, visit https://groups.google.com/d/optout.
>>>
>> --
> 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 https://groups.google.com/d/optout.
>

-- 
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 https://groups.google.com/d/optout.


Re: [weewx-user] Vantage Vue wind cup size setting with wee_device

2018-10-20 Thread Philip Kutzenco
Thomas,

Thanks for the reply. I won't worry about it. The reason I asked is that 
the help file for Davis' Weatherlink software shows three options. See the 
attached screen shot I took for setting that in the console with 
Weatherlink. Evidently, you can set a VantagePro to use small cups or 
Vue/Other cups. I'll just leave the value as it is set in the console 
without setting it explicitly.
phil

On Saturday, October 20, 2018 at 8:22:26 PM UTC-4, Thomas Keffer wrote:
>
> A Vantage (whether a Vue or a VantagePro) ships with a value in the EEPROM 
> firmware that matches its cup size. Unless you change the cups, there is no 
> reason to mess with this value. The wee_device utility option is there if, 
> for some reason, you have to change the cups.
>
> To answer your question, the Davis documentation lists only two sizes: 
> small and large. If there's a third "Vue" sized, I haven't heard of it. 
> You'd have to ask Davis.
>
> -tk
>
> On Sat, Oct 20, 2018 at 7:35 AM Philip Kutzenco  > wrote:
>
>> Now that I have my external website operational (https://wx.kutzenco.com) 
>> with a Mosquitto MQTT broker and Belchertown skin, I'm spending a bit more 
>> time reviewing the weeWX documentation to get a deeper understanding of my 
>> system. I'm hoping to do some customization.
>>
>> I have a Davis Vantage Vue weather station and weeWX running on a 
>> Raspberry Pi Zero W. I see that the Davis Weatherlink software gives the 
>> options for wind cup size as Small, Large or Vue/Other. That Davis 
>> documentation says that Vantage Pro systems generally ship with large cups, 
>> and that (obviously) Vantage Vue systems ship with Vue cups.
>>
>> The wee_device --help command mentions only Small and Large options for 
>> wind cup size. Is there an option for Vue/other cups? I don't know what is 
>> adjusted in the readings/calculations by specifying different cup sizes. I 
>> didn't see that called out in the weeWX documention. I suspect the 
>> difference is minimal, but, just to ensure that everything can be set 
>> properly with weeWX does that option need to be added to wee_device for 
>> Vantage systems, if it isn't there?
>>
>> phil
>>
>> -- 
>> 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 options, visit https://groups.google.com/d/optout.
>>
>

-- 
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 https://groups.google.com/d/optout.


Re: [weewx-user] Re: Steel Gauges question

2018-10-20 Thread Steve2Q
This is a VERY old thread, but I bumped it back up because I ran into a 
problem. I have been trying to track down what may be a memory leak, and in 
doing so I started from scratch with a new installation on a new RPi. After 
a couple of days, the memory use leveled off, so I started to re-install 
some extensions with the first being Steel Gauges. It went Ok, but then I 
ran into an old problem. Look at the page here:  
http://photokinetics.org/Weather/ss/

You can see that the two temp gauges are wonky. The indoor temp displays 
properly when selected, but that is it it. I went back to Gary's suggestion 
of 6/26/16, but that did not seem to work this time. One thing I noticed is 
a difference where "wchillTL":"$day.windchill.min.raw"   instead reads 
"WchillTL":$day.windchill.min.formatted"

So,I just used his suggested code change replacing the word raw with 
formatted, but that was a no go.

I shudder to think what will happen when this gets sorted out and I install 
RTG.!!

Steve

-- 
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 https://groups.google.com/d/optout.


Re: [weewx-user] Vantage Vue wind cup size setting with wee_device

2018-10-20 Thread Thomas Keffer
A Vantage (whether a Vue or a VantagePro) ships with a value in the EEPROM
firmware that matches its cup size. Unless you change the cups, there is no
reason to mess with this value. The wee_device utility option is there if,
for some reason, you have to change the cups.

To answer your question, the Davis documentation lists only two sizes:
small and large. If there's a third "Vue" sized, I haven't heard of it.
You'd have to ask Davis.

-tk

On Sat, Oct 20, 2018 at 7:35 AM Philip Kutzenco  wrote:

> Now that I have my external website operational (https://wx.kutzenco.com)
> with a Mosquitto MQTT broker and Belchertown skin, I'm spending a bit more
> time reviewing the weeWX documentation to get a deeper understanding of my
> system. I'm hoping to do some customization.
>
> I have a Davis Vantage Vue weather station and weeWX running on a
> Raspberry Pi Zero W. I see that the Davis Weatherlink software gives the
> options for wind cup size as Small, Large or Vue/Other. That Davis
> documentation says that Vantage Pro systems generally ship with large cups,
> and that (obviously) Vantage Vue systems ship with Vue cups.
>
> The wee_device --help command mentions only Small and Large options for
> wind cup size. Is there an option for Vue/other cups? I don't know what is
> adjusted in the readings/calculations by specifying different cup sizes. I
> didn't see that called out in the weeWX documention. I suspect the
> difference is minimal, but, just to ensure that everything can be set
> properly with weeWX does that option need to be added to wee_device for
> Vantage systems, if it isn't there?
>
> phil
>
> --
> 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 https://groups.google.com/d/optout.
>

-- 
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 https://groups.google.com/d/optout.


Re: [weewx-user] Re: How to create a custom CSV file?

2018-10-20 Thread Herwig Diessner
Thank you Thomas, that did the trick - working like a charm. Thank you 
again!

Am Donnerstag, 18. Oktober 2018 02:36:35 UTC+2 schrieb Thomas Keffer:
>
> This is very easy to do in WeeWX. You certainly do not need to write SQL 
> statements.
>
> Create a file called mydata.txt.tmpl in the skins/Standard directory. 
> Inside it, put
>
> $current.dateTime.format("%Y-%m-%d 
> %H:%M:%S"):$current.barometer.mbar:$current.outTemp.degree_C
>
> In your skin configuration file, skin.conf, under the [[ToDate]] section, 
> include the template file name. It should look something like this:
>
> [[ToDate]]
> # Reports that show statistics "to date", such as day-to-date,
> # week-to-date, month-to-date, etc.
> [[[mytemplate]]]
> template = mydata.txt.tmpl
>
> [[[day]]]
> template = index.html.tmpl
> 
> ... (as before)
>
> When WeeWX runs it will fill out the template and put it in your HTML 
> directory.
>
> -tk
>
> On Wed, Oct 17, 2018 at 8:03 AM > wrote:
>
>>
>>
>> On Wednesday, October 17, 2018 at 8:40:55 AM UTC-4, Herwig Diessner wrote:
>>>
>>> Hello all,
>>>
>>> I need to export only 3 pieces of data from weewx into a file.
>>> The file should contain a single line of text in the following format:
>>> date;pressure;temperature
>>>
>>> The date is in the format "-MM-dd HH:mm:ss".
>>> The pressure and temperature are expressed in hPa and °C, respectively
>>>
>>> I tried to use the CSV extension and succeeded in
>>> - single line
>>> - time-format
>>>
>>> However, all sensor data is exported and the delimiter is fixed to , 
>>> instead of the required ;
>>>
>>> Is there any chance to succeed using the CSV extension (e.g. options to 
>>> define the delimiter as ; instead of , - and options which sensor data is 
>>> to be exported)?
>>> Or do I need another extension, or is there even another way?
>>>
>>> My searches on "export" and "csv" didn't bring any clues.
>>>
>>> In case of interest, this is my use case:
>>> I want to use temperature and pressure data to calculate "refraction" 
>>> data for astrophotography using a 10micron telescope mount.
>>> This mount allows to calculate refraction data automatically if fed with 
>>> a text file with the specifications above.
>>> Probably there are more users who might make use of this.
>>>
>>> Thank you for any hint,
>>>
>>> Herwig
>>>
>>
>>
>> The following mysql select statement gave me the results you wanted.  
>> 2016-02-21 19:10:24;29.92;52.34
>> My database isn't metric but you can convert if necessary.  If you use 
>> sqllite i'm sure someone will convert for you.
>>
>> select timestampadd(second, dateTime, '1970-01-01'),barometer,outTemp 
>> into outfile 'test.csv' fields terminated by ';' from archive limit 5;
>>
>> -- 
>> 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 options, visit https://groups.google.com/d/optout.
>>
>

-- 
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 https://groups.google.com/d/optout.


[weewx-user] Re: WeatherLink and wlink driver not pulling data

2018-10-20 Thread trrisner
Regarding these wlink driver instructions: 


   1. Copy the driver file to the weewx user directory:

cp wlink-x.y.z/bin/user/wlink.py /home/weewx/bin/user




Using the Weewx setup instructions for RedHat type machines, there is no 
/home/weewx/bin/user directory. 
Where should this driver be located? 



-- 
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 https://groups.google.com/d/optout.


[weewx-user] Vantage Vue wind cup size setting with wee_device

2018-10-20 Thread Philip Kutzenco
Now that I have my external website operational (https://wx.kutzenco.com) 
with a Mosquitto MQTT broker and Belchertown skin, I'm spending a bit more 
time reviewing the weeWX documentation to get a deeper understanding of my 
system. I'm hoping to do some customization.

I have a Davis Vantage Vue weather station and weeWX running on a Raspberry 
Pi Zero W. I see that the Davis Weatherlink software gives the options for 
wind cup size as Small, Large or Vue/Other. That Davis documentation says 
that Vantage Pro systems generally ship with large cups, and that 
(obviously) Vantage Vue systems ship with Vue cups.

The wee_device --help command mentions only Small and Large options for 
wind cup size. Is there an option for Vue/other cups? I don't know what is 
adjusted in the readings/calculations by specifying different cup sizes. I 
didn't see that called out in the weeWX documention. I suspect the 
difference is minimal, but, just to ensure that everything can be set 
properly with weeWX does that option need to be added to wee_device for 
Vantage systems, if it isn't there?

phil

-- 
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 https://groups.google.com/d/optout.


[weewx-user] Re: Cannot start weewx

2018-10-20 Thread Auchtermuchty Weather
Thanks, I compared it's weewx.conf to the one from my own, working, station 
and found I'd missed a couple of rows from the [FineOffsetUSB] section. 

On Saturday, 20 October 2018 13:24:17 UTC+1, gjr80 wrote:
>
> Hi,
>
> Sounds like your weewx.conf is missing something or has a typo. Suggest 
> you go through the [Station] and driver stanzas with a fine tooth comb. If 
> you can't find anything wrong post a sanitised version of your weewx.conf.
>
> 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...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[weewx-user] Cannot start weewx

2018-10-20 Thread gjr80
Hi,

Sounds like your weewx.conf is missing something or has a typo. Suggest you go 
through the [Station] and driver stanzas with a fine tooth comb. If you can't 
find anything wrong post a sanitised version of your weewx.conf.

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...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[weewx-user] Cannot start weewx

2018-10-20 Thread Auchtermuchty Weather
Installed the latest WeeWx on a Raspberry Pi, worked my way through 
configuration errors in weewx.conf and now this:

Oct 20 13:09:24 sgcweather systemd[1]: Starting LSB: weewx weather system...
Oct 20 13:09:26 sgcweather weewx[504]: engine: Initializing weewx version 
3.8.2
Oct 20 13:09:26 sgcweather weewx[504]: engine: Using Python 2.7.13 
(default, Sep 26 2018, 18:42:22) #012[GCC 6.3.0 20170516]
Oct 20 13:09:26 sgcweather weewx[504]: engine: Platform 
Linux-4.14.50+-armv6l-with-debian-9.4
Oct 20 13:09:26 sgcweather weewx[504]: engine: Locale is 'en_GB.UTF-8'
Oct 20 13:09:26 sgcweather weewx[504]: engine: pid file is 
/var/run/weewx.pid
Oct 20 13:09:26 sgcweather weewx[493]: Starting weewx weather system: weewx.
Oct 20 13:09:26 sgcweather systemd[1]: Started LSB: weewx weather system.
Oct 20 13:09:26 sgcweather weewx[508]: engine: Using configuration file 
/home/weewx/weewx.conf
Oct 20 13:09:26 sgcweather weewx[508]: engine: Debug is 1
Oct 20 13:09:26 sgcweather weewx[508]: engine: Initializing engine
Oct 20 13:09:26 sgcweather weewx[508]: engine: Caught unrecoverable 
exception in engine:
Oct 20 13:09:26 sgcweather weewx[508]:   'driver'
Oct 20 13:09:26 sgcweather weewx[508]:   Traceback (most recent 
call last):
Oct 20 13:09:26 sgcweather weewx[508]: File 
"/home/weewx/bin/weewx/engine.py", line 871, in main
Oct 20 13:09:26 sgcweather weewx[508]:   engine = 
engine_class(config_dict)
Oct 20 13:09:26 sgcweather weewx[508]: File 
"/home/weewx/bin/weewx/engine.py", line 72, in __init__
Oct 20 13:09:26 sgcweather weewx[508]:   
self.setupStation(config_dict)
Oct 20 13:09:27 sgcweather weewx[508]: File 
"/home/weewx/bin/weewx/engine.py", line 90, in setupStation
Oct 20 13:09:27 sgcweather weewx[508]:   driver = 
config_dict[stationType]['driver']
Oct 20 13:09:27 sgcweather weewx[508]: File 
"/usr/lib/python2.7/dist-packages/configobj.py", line 554, in __getitem__
Oct 20 13:09:27 sgcweather weewx[508]:   val = 
dict.__getitem__(self, key)
Oct 20 13:09:27 sgcweather weewx[508]:   KeyError: 'driver'
Oct 20 13:09:27 sgcweather weewx[508]:   Exiting.

It looks like the RPi has 'seen' the weather station:

pi@sgcweather:/home/weewx $ lsusb
Bus 001 Device 004: ID 1941:8021 Dream Link WH1080 Weather Station / USB 
Missile Launcher
Bus 001 Device 003: ID 0424:ec00 Standard Microsystems Corp. SMSC9512/9514 
Fast Ethernet Adapter
Bus 001 Device 002: ID 0424:9512 Standard Microsystems Corp. SMC9512/9514 
USB Hub
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub

The weather station is an Aercus WS2083 which is on the list of devices.  
Operating System is the latest Stretch Lite.

Nothing of interest in /var/log/debug:

Oct 20 13:09:26 sgcweather weewx[508]: engine: Debug is 1
Oct 20 13:09:26 sgcweather weewx[508]: engine: Initializing engine


It worked fine with the Simulator...



-- 
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 https://groups.google.com/d/optout.


[weewx-user] Re: WeatherLink and wlink driver not pulling data

2018-10-20 Thread trrisner

>
> Manual run of weewx gets me the following: 
>

LOOP:   2018-10-20 11:45:39 UTC (1540035939) dateTime: 1540035939, 
maxSolarRad: None, outTemperature: None, rainRate: 0, usUnits: 1
LOOP:   2018-10-20 11:46:39 UTC (1540035999) dateTime: 1540035999, 
maxSolarRad: None, outTemperature: None, rainRate: 0, usUnits: 1


Again telling me that the problem is with communicating with the weather 
station? Anyone using wlink, can you confirm? 

-- 
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 https://groups.google.com/d/optout.