Re: [weewx-user] Re: MQTT weather data as input to weewx

2017-09-26 Thread Bill Morrow
On Wednesday, 20 September 2017 14:20:41 UTC-3, Robert Mantel wrote:
>
> I know this is an old thread, but did you guys ever get around to making a 
> driver that subscribes to an mqtt server to get sensor data?  My RFM69 
> sensors connect to a gateway which parses the data into my mqtt server, so 
> now I'm looking for a way to get it into weewx.  
>
>>
>>
Robert, have a look at the driver I created and has been forked a couple of 
times. It is discussed 
in https://groups.google.com/d/topic/weewx-development/tNDnGNe9Z_M/discussion

https://github.com/morrowwm/weewxMQTT - my version

https://github.com/bonjour81/ESP8266-MQTT-WEEWX - Frederic's fork

Another fellow has worked on Frederic's version.

-- 
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: Error when trying to get data for the first time

2017-09-26 Thread Lilian ROBERT
I am using mysql, not sqlite. But I retried and now, I can see the 
records in the archive table...


I don't know what changed but I probably missed something, sorry.

Thank you for your help



Le 26. 09. 17 à 14:57, Thomas Keffer a écrit :

If you do not have it already, install the utility sqlite3

sudo apt-get install sqlite3


Then check the database

sqlite3 /var/lib/weewx/weewx.sdb
sqlite> select dateTime,
datetime(dateTime,'unixepoch','localtime') from archive;


This will show you what records are in the database.

-tk

On Tue, Sep 26, 2017 at 5:27 AM, Lilian ROBERT 
mailto:lilian.rob...@gmail.com>> wrote:




Le 26. 09. 17 à 13:02, mwall a écrit :




i'm not sure what question you are asking.

are you saying that weewx has completed its read of historical
records, but none (some?) of those records were added?

or are you saying that weewx has started its read of historical
records, but you do not see any records?

for the latter, just be patient.

for the former, (and perhaps the latter), you might have to
remove the latest n records from the database.  when it does
'catchup' during startup, weewx will only add historical records
that are newer than the latest record in the database.

m


I will try to be clear. It is a fresh install with an "old"
station. One hour ago, the archive table was empty. First, I get
an error (see my first message). After an updade of the wmr200
driver, I restarted weewx. Immediately, a record (the older ?
15/6/2014 à 17:24:16) appeared in the archive table. Weewx
continued (and is always continuing) to treat station's records.

But no more records are inserted in the archive table. My question
is why, why the only the first and not the others.

Sep 26 13:54:55 raspberrypi weewx[2085]: wmr200: MainThread: D  
adjust_rain rain_total:72.14 Archive Data.rain_total_last:72.14

rain_interval:0.00
Sep 26 13:54:55 raspberrypi weewx[2085]: wmr200: MainThread: D
genStartup() Yielding received archive record cnt:396 after
requested timestamp:1402948906 pkt_interval:60 pkt:2014-06-17
04:38:26 CEST (1402972706)
Sep 26 13:54:55 raspberrypi weewx[2085]: manager: Added record
2014-06-17 04:38:26 CEST (1402972706) to database 'weewx'
Sep 26 13:54:56 raspberrypi weewx[2085]: manager: Added record
2014-06-17 04:38:26 CEST (1402972706) to daily summary in 'weewx'
Sep 26 13:54:56 raspberrypi weewx[2085]: wmr200: MainThread: D  
Queuing archive packet rx:2090 archive_queue_len:1

Sep 26 13:54:56 raspberrypi weewx[2085]: wmr200: MainThread: I
genStartup() Still receiving archive packets cnt:396 len:1
Sep 26 13:54:56 raspberrypi weewx[2085]: wmr200: MainTh

Thanks


-- 
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/W2u8w-Z8x9I/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
.


--
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/W2u8w-Z8x9I/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.


Re: [weewx-user] Re: Error when trying to get data for the first time

2017-09-26 Thread Thomas Keffer
If you do not have it already, install the utility sqlite3

sudo apt-get install sqlite3


Then check the database

sqlite3 /var/lib/weewx/weewx.sdb
sqlite> select dateTime, datetime(dateTime,'unixepoch','localtime') from
archive;


This will show you what records are in the database.

-tk

On Tue, Sep 26, 2017 at 5:27 AM, Lilian ROBERT 
wrote:

>
>
> Le 26. 09. 17 à 13:02, mwall a écrit :
>
>
>
>
> i'm not sure what question you are asking.
>
> are you saying that weewx has completed its read of historical records,
> but none (some?) of those records were added?
>
> or are you saying that weewx has started its read of historical records,
> but you do not see any records?
>
> for the latter, just be patient.
>
> for the former, (and perhaps the latter), you might have to remove the
> latest n records from the database.  when it does 'catchup' during startup,
> weewx will only add historical records that are newer than the latest
> record in the database.
>
> m
>
>
> I will try to be clear. It is a fresh install with an "old" station. One
> hour ago, the archive table was empty. First, I get an error (see my first
> message). After an updade of the wmr200 driver, I restarted weewx.
> Immediately, a record (the older ? 15/6/2014 à 17:24:16) appeared in the
> archive table. Weewx continued (and is always continuing) to treat
> station's records.
>
> But no more records are inserted in the archive table. My question is why,
> why the only the first and not the others.
>
> Sep 26 13:54:55 raspberrypi weewx[2085]: wmr200: MainThread: D
> adjust_rain rain_total:72.14 Archive Data.rain_total_last:72.14
> rain_interval:0.00
> Sep 26 13:54:55 raspberrypi weewx[2085]: wmr200: MainThread: D
> genStartup() Yielding received archive record cnt:396 after requested
> timestamp:1402948906 pkt_interval:60 pkt:2014-06-17 04:38:26 CEST
> (1402972706)
> Sep 26 13:54:55 raspberrypi weewx[2085]: manager: Added record 2014-06-17
> 04:38:26 CEST (1402972706) to database 'weewx'
> Sep 26 13:54:56 raspberrypi weewx[2085]: manager: Added record 2014-06-17
> 04:38:26 CEST (1402972706) to daily summary in 'weewx'
> Sep 26 13:54:56 raspberrypi weewx[2085]: wmr200: MainThread: D   Queuing
> archive packet rx:2090 archive_queue_len:1
> Sep 26 13:54:56 raspberrypi weewx[2085]: wmr200: MainThread: I
> genStartup() Still receiving archive packets cnt:396 len:1
> Sep 26 13:54:56 raspberrypi weewx[2085]: wmr200: MainTh
>
> Thanks
>
>
> --
> 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/W2u8w-Z8x9I/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.
>

-- 
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] Wind Gust N/A

2017-09-26 Thread Thomas Keffer
I am sorry, but I did not understand. You do have a problem? Or, you do not
have a problem?

What kind of weather station are you using?

-tk

On Tue, Sep 26, 2017 at 1:49 AM, Nicolas Cazan 
wrote:

> I have downloaded weewx via github and uploader with filezila wmr200.py in
> the drivers folder, I have relaunched weewx for now more problem for me.
>
> --
> 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: Error when trying to get data for the first time

2017-09-26 Thread Lilian ROBERT



Le 26. 09. 17 à 13:02, mwall a écrit :




i'm not sure what question you are asking.

are you saying that weewx has completed its read of historical 
records, but none (some?) of those records were added?


or are you saying that weewx has started its read of historical 
records, but you do not see any records?


for the latter, just be patient.

for the former, (and perhaps the latter), you might have to remove the 
latest n records from the database.  when it does 'catchup' during 
startup, weewx will only add historical records that are newer than 
the latest record in the database.


m


I will try to be clear. It is a fresh install with an "old" station. One 
hour ago, the archive table was empty. First, I get an error (see my 
first message). After an updade of the wmr200 driver, I restarted weewx. 
Immediately, a record (the older ? 15/6/2014 à 17:24:16) appeared in the 
archive table. Weewx continued (and is always continuing) to treat 
station's records.


But no more records are inserted in the archive table. My question is 
why, why the only the first and not the others.


Sep 26 13:54:55 raspberrypi weewx[2085]: wmr200: MainThread: D 
adjust_rain rain_total:72.14 Archive Data.rain_total_last:72.14 
rain_interval:0.00
Sep 26 13:54:55 raspberrypi weewx[2085]: wmr200: MainThread: D 
genStartup() Yielding received archive record cnt:396 after requested 
timestamp:1402948906 pkt_interval:60 pkt:2014-06-17 04:38:26 CEST 
(1402972706)
Sep 26 13:54:55 raspberrypi weewx[2085]: manager: Added record 
2014-06-17 04:38:26 CEST (1402972706) to database 'weewx'
Sep 26 13:54:56 raspberrypi weewx[2085]: manager: Added record 
2014-06-17 04:38:26 CEST (1402972706) to daily summary in 'weewx'
Sep 26 13:54:56 raspberrypi weewx[2085]: wmr200: MainThread: D Queuing 
archive packet rx:2090 archive_queue_len:1
Sep 26 13:54:56 raspberrypi weewx[2085]: wmr200: MainThread: I 
genStartup() Still receiving archive packets cnt:396 len:1

Sep 26 13:54:56 raspberrypi weewx[2085]: wmr200: MainTh

Thanks



--
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/W2u8w-Z8x9I/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.


Re: [weewx-user] Re: Error when trying to get data for the first time

2017-09-26 Thread mwall


On Tuesday, September 26, 2017 at 6:48:50 AM UTC-4, Lilian ROBERT wrote:
>
> That works, thank you very much.
>
> Now, weewx is running. In syslog, I can see a lot of lines like this :
>
> Sep 26 12:46:16 raspberrypi weewx[2085]: manager: Added record 2014-06-15 
> 23:34:36 CEST (1402868076) to database 'weewx'
> Sep 26 12:46:16 raspberrypi weewx[2085]: manager: Added record 2014-06-15 
> 23:34:36 CEST (1402868076) to daily summary in 'weewx'
> Sep 26 12:46:16 raspberrypi weewx[2085]: wmr200: MainThread: D   Queuing 
> live packet rx:95 live_queue_len:95
> Sep 26 12:46:17 raspberrypi weewx[2085]: wmr200: MainThread: D   Queuing 
> archive packet rx:370 archive_queue_len:1
> Sep 26 12:46:18 raspberrypi weewx[2085]: wmr200: MainThread: I 
> genStartup() Still receiving archive packets cnt:117 len:1
> Sep 26 12:46:18 raspberrypi weewx[2085]: wmr200: MainTh
>
> It seems weewx is treating old records from my wmr200. But in database it 
> has only inserted on with dateTime=1402845856 (15/6/2014 à 17:24:16).
>
> Why weewx does not insert all records ?
>

i'm not sure what question you are asking.

are you saying that weewx has completed its read of historical records, but 
none (some?) of those records were added?

or are you saying that weewx has started its read of historical records, 
but you do not see any records?

for the latter, just be patient.

for the former, (and perhaps the latter), you might have to remove the 
latest n records from the database.  when it does 'catchup' during startup, 
weewx will only add historical records that are newer than the latest 
record in the database. 

m

-- 
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: Error when trying to get data for the first time

2017-09-26 Thread Lilian ROBERT

That works, thank you very much.

Now, weewx is running. In syslog, I can see a lot of lines like this :

Sep 26 12:46:16 raspberrypi weewx[2085]: manager: Added record 
2014-06-15 23:34:36 CEST (1402868076) to database 'weewx'
Sep 26 12:46:16 raspberrypi weewx[2085]: manager: Added record 
2014-06-15 23:34:36 CEST (1402868076) to daily summary in 'weewx'
Sep 26 12:46:16 raspberrypi weewx[2085]: wmr200: MainThread: D Queuing 
live packet rx:95 live_queue_len:95
Sep 26 12:46:17 raspberrypi weewx[2085]: wmr200: MainThread: D Queuing 
archive packet rx:370 archive_queue_len:1
Sep 26 12:46:18 raspberrypi weewx[2085]: wmr200: MainThread: I 
genStartup() Still receiving archive packets cnt:117 len:1

Sep 26 12:46:18 raspberrypi weewx[2085]: wmr200: MainTh

It seems weewx is treating old records from my wmr200. But in database 
it has only inserted on with dateTime=1402845856 (15/6/2014 à 17:24:16).


Why weewx does not insert all records ?



Le 26. 09. 17 à 12:28, mwall a écrit :



On Tuesday, September 26, 2017 at 5:27:23 AM UTC-4, lilian.robert wrote:


I just did a fresh install of raspbian, installed and configured
mysql (mariadb), installed and configured weewx.

When I connect the weather station (wmr200) thru usb and restart
weewx, here is what I get in syslog (debug=1). The tables have
been created by weewx but all tables are empty :

Sep 26 10:37:01 raspberrypi systemd[1]: Stopping LSB: weewx
weather system...
...
Sep 26 10:37:40 raspberrypi weewx[1145]:  KeyError:
'interval'
Sep 26 10:37:40 raspberrypi weewx[1145]:  Exiting.

I really don't see what is wrong. I also don't know why the record
date is so old (2014-06-15 17:21:16). Maybe an old record in the
station's datalogger ?


this bug has been fixed.

please download the latest wmr200 driver (currently v3.3.4) and 
replace your wmr200 driver with it.


https://raw.githubusercontent.com/weewx/weewx/master/bin/weewx/drivers/wmr200.py

m
--
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/W2u8w-Z8x9I/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: Error when trying to get data for the first time

2017-09-26 Thread mwall


On Tuesday, September 26, 2017 at 5:27:23 AM UTC-4, lilian.robert wrote:
>
>
> I just did a fresh install of raspbian, installed and configured mysql 
> (mariadb), installed and configured weewx. 
>
> When I connect the weather station (wmr200) thru usb and restart weewx, 
> here is what I get in syslog (debug=1). The tables have been created by 
> weewx but all tables are empty : 
>
> Sep 26 10:37:01 raspberrypi systemd[1]: Stopping LSB: weewx weather 
> system... 
> ...
> Sep 26 10:37:40 raspberrypi weewx[1145]:   KeyError: 'interval' 
> Sep 26 10:37:40 raspberrypi weewx[1145]:   Exiting. 
>
> I really don't see what is wrong. I also don't know why the record date is 
> so old (2014-06-15 17:21:16). Maybe an old record in the station's 
> datalogger ? 
>

this bug has been fixed.

please download the latest wmr200 driver (currently v3.3.4) and replace 
your wmr200 driver with it.

https://raw.githubusercontent.com/weewx/weewx/master/bin/weewx/drivers/wmr200.py

m 

-- 
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] Wind direction wmr200

2017-09-26 Thread gjr80
I very much doubt whether the user will have v3.3.4, Tom only made the commit 
in the last 9 hours so unless the user cloned the master branch he will have an 
earlier version ( the user indicated in a since deleted post he has a .deb 
install so extremely unlikely he has v3.3.4).

The driver can be updated in a number of ways, unfortunately GitHub does not 
make it easy to download a single file from a repo. There are a few ways to 
update the driver. Yes you can use a text editor such as vi or nano to make the 
changes, in fact given that the changes only consist of 2 changed lines and 3 
deleted lines this will arguably be the quickest solution. You clould clone the 
repo and pull the file out locally (needs some basic git knowledge), you could 
view the changed file on GitHub in a browser in raw view and then copy and 
paste into your editor or you could download a zip of the weeWX repo and then 
unzip locally and copy the file to your weeWX machine. Starting to get a bit 
involved for the sake of a few changes.

As i said making the few changes with vi or nano is probably easiest.

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] Wind Gust N/A

2017-09-26 Thread Nicolas Cazan
I have downloaded weewx via github and uploader with filezila wmr200.py in 
the drivers folder, I have relaunched weewx for now more problem for me.

-- 
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] Wind direction wmr200

2017-09-26 Thread Andrew Milner
Tom said it was fixed in the commit - so what were you going to modify with 
vi?  If you have driver version 3.3.4 the changes should be in there 
already.



On Tuesday, 26 September 2017 10:54:23 UTC+3, Pookmia Romero wrote:

> ok, i have located the driver, we have to modify it with vi?
>

-- 
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] Wind direction wmr200

2017-09-26 Thread Pookmia Romero
ok, i have located the driver, we have to modify it with vi?

-- 
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] Wind direction wmr200

2017-09-26 Thread Pookmia Romero
Hello, I think I have the same problem, but I can not find the file drivers?

I installed weewx via a .deb.
thank you in advance


Le mardi 26 septembre 2017 01:40:53 UTC+2, Tom Keffer a écrit :
>
> Sorry. Bad link. Should be commit da0a31e 
> 
> .
>
> -tk
>
> On Mon, Sep 25, 2017 at 4:38 PM, Thomas Keffer  > wrote:
>
>> Follow up to the rest of the group: I have not heard back from Franck, 
>> but I'm pretty confident this was caused by a bug in the WMR200 driver that 
>> effectively caused the value for ignore_zero_wind to be ignored. Fixed 
>> in commit da0a31e.
>>
>> -tk
>>
>> On Sun, Sep 24, 2017 at 3:42 PM, Thomas Keffer > > wrote:
>>
>>> Please send your weewx.conf file to me in a private email. You may want 
>>> to obfuscate any passwords first. My email address is tke...@gmail.com 
>>> 
>>>
>>> -tk
>>>
>>> On Sun, Sep 24, 2017 at 11:33 AM, jahfly1000 >> > wrote:
>>>
 hello

 "sudo weewxd weewx.conf" no work just "cd / home / weewx
 sudo 
 ./bin/weewxd weewx.conf"
 Because i installed weewx using setup.py

 and i use the "sudo /etc/init.d/weewx restart" command

 my first rec

 REC:2017-09-24 20:00:00 CEST (1506276000) altimeter: 30.0319972875, 
 appTemp: 67.2474531037, barometer: 30.0429462776, clockUnsynchronized: 
 0.0, 
 cloudbase: 4485.52191023, dateTime: 1506276000.0, dewpoint: 48.1924182234, 
 ET: None, forecastIcon: 6.0, heatindex: 67.64, humidex: 69.1315325364, 
 inDewpoint: 56.8044164637, inHeatindex: None, inHumidity: 51.0, inTemp: 
 76.28, interval: 5, maxSolarRad: 0.0, outHumidity: 49.75, outTemp: 67.64, 
 outTempBatteryStatus: 0.0, outTempFault: 0.0, pressure: 29.9729373125, 
 rainBatteryStatus: 0.0, rainFault: 0.0, usUnits: 1, uvBatteryStatus: 0.0, 
 uvFault: 0.0, windBatteryStatus: 0.0, windchill: 67.64, windDir: None, 
 windFault: 0.0, windGust: 5.63709346689, windGustDir: None, windrun: 
 50.0497166216, windSpeed: 0.0

  and after stop 

 REC:2017-09-24 20:20:00 CEST (1506277200) altimeter: 30.0319972875, 
 appTemp: 66.3488980482, barometer: 30.0430757159, clockUnsynchronized: 
 0.0, 
 cloudbase: 4199.28441572, dateTime: 1506277200.0, dewpoint: 48.4798631992, 
 ET: None, forecastIcon: 6.0, heatindex: 66.668, humidex: 68.2846680055, 
 inDewpoint: 56.6389574404, inHeatindex: None, inHumidity: 51.0, inTemp: 
 76.1, interval: 5, maxSolarRad: 0.0, outHumidity: 52.0, outTemp: 66.668, 
 outTempBatteryStatus: 0.0, outTempFault: 0.0, pressure: 29.9729373125, 
 rainBatteryStatus: 0.0, rainFault: 0.0, usUnits: 1, uvBatteryStatus: 0.0, 
 uvFault: 0.0, windBatteryStatus: 0.0, windchill: 66.668, windDir: None, 
 windFault: 0.0, windGust: 0.0, windGustDir: None, windrun: 50.4613139224, 
 windSpeed: 0.0

 Sep 24 20:20:02 raspberrypi weewx[29817]: wmr200: MainThread: D   
 Queuing live packet rx:72 live_queue_len:1
 Sep 24 20:20:03 raspberrypi weewx[29817]: wmr200: MainThread: D 
 genLoop() Yielding live queued packet id:78
 Sep 24 20:20:07 raspberrypi weewx[29817]: wmr200: MainThread: D   
 Queuing live packet rx:73 live_queue_len:1
 Sep 24 20:20:07 raspberrypi rsyslogd-2007: action 'action 17' 
 suspended, next retry is Sun Sep 24 20:21:37 2017 [try 
 http://www.rsyslog.com/e/2007 ]
 Sep 24 20:20:08 raspberrypi weewx[29817]: wmr200: MainThread: D 
 genLoop() Yielding live queued packet id:79
 Sep 24 20:20:11 raspberrypi weewx[29817]: wmr200: MainThread: D   
 Acknowledged control packet rx:7
 Sep 24 20:20:13 raspberrypi ntpd_intres[688]: host name not found: 
 192.168.1.20/weewx
 Sep 24 20:20:17 raspberrypi weewx[29817]: wmr200: MainThread: D   
 Queuing live packet rx:74 live_queue_len:1
 Sep 24 20:20:18 raspberrypi weewx[29817]: wmr200: MainThread: D 
 genLoop() Yielding live queued packet id:81
 Sep 24 20:20:18 raspberrypi weewx[29817]: manager: Added record 
 2017-09-24 20:20:00 CEST (1506277200) to database 'weewx.sdb'
 Sep 24 20:20:18 raspberrypi weewx[29817]: manager: Added record 
 2017-09-24 20:20:00 CEST (1506277200) to daily summary in 'weewx.sdb'
 Sep 24 20:20:19 raspberrypi weewx[29817]: reportengine: Running reports 
 for latest time in the database.
 Sep 24 20:20:19 raspberrypi weewx[29817]: wmr200: MainThread: D 
 genLoop() phase getting live packets
 Sep 24 20:20:19 raspberrypi weewx[29817]: reportengine: Running report 
 StandardReport
 Sep 24 20:20:19 raspberrypi weewx[29817]: reportengine: Found 
 configuration file /home/weewx/skins/simple/skin.conf for report 
 StandardReport
 Sep 24 20:20:19 raspberrypi weewx[29817]: cheetahgenerator: using 
 search list ['weewx.cheetahgenerator.Almanac', 
 'weewx.cheetahgenerator.Station', 'weewx.cheeta