[weewx-development] Re: Weewx and Ambient Weather ObserverIP

2018-04-25 Thread vk3anz
Perhaps a bit more detail on what you tried, what worked and what didn't. Also what were the sources of your information that you tried (URLs etc.) and where did you get up to? Susan On Thursday, April 26, 2018 at 7:55:34 AM UTC+10, Jim Myers wrote: > > I have followed steps from two different

[weewx-development] Re: Advice on a new driver and how to make it available

2017-09-10 Thread vk3anz
The protocol used to talk to the console is based on what I could see being used by the EasyWeatherIP app (the version I looked at was running on my iMac under MacOS). If there is similar software that can talk to your console (or even a later version of the software I used) then there is a

[weewx-development] Re: Advice on a new driver and how to make it available

2017-09-05 Thread vk3anz
Hello Francesco, The log has identified a bug which has now been fixed and a new file uploaded to GitHub. Basically I had refactored some of the network access code (to avoid duplicating the code for both the historic and current record access) and I had not transferred over a variable

[weewx-development] weeWx on a Raspberry Pi giving 'Broken Pipe' errors

2017-08-02 Thread vk3anz
This relates to the latest update of my HP1000 (and clone) driver where I've added in code to read historical records from the weather station. Configuration: weeWx 3.6.2 running on a Raspberry Pi 3 with the latest patches. To read the historical records, the driver makes a number of network

[weewx-development] Re: Advice on a new driver and how to make it available

2017-08-02 Thread vk3anz
I've further updated my driver (in the github repository) to read historical records from the weather station when weeWx starts up. It uses te 'genStartupRecords' function to do this. If the weeWx database is empty (the timestamp passed to the driver is None) then it will try to read all of

[weewx-development] Re: Meaning of the UV value (and units)

2017-08-02 Thread vk3anz
Hello Bob, I found the same information (in answer to my Q3) and I've used that. The HP1000 (and clones) provide different information in various records: form the NOWRECORD (the current observation data) it provides the UVI directly, but the HISTORY_DATA record has the UV value but in

[weewx-development] Meaning of the UV value (and units)

2017-08-01 Thread vk3anz
I'm upgrading my HP1000 (and clone) driver so that it reads all of the "history" records from the weather station since the last one in the database (using the 'genStartupRecords' function) when Weewx connects to the weather station. I have managed to work out what is required for all of the

[weewx-development] Re: Advice on a new driver and how to make it available

2017-07-17 Thread vk3anz
I've just updated the HP1000/WS1001/other-clones driver in the GIT repository. If you have the 'netifaces' Python package installed then the driver will work out the network broadcast mask for itself. If the package is not installed then it will work as before. The actual process is: - if the

Re: [weewx-development] Re: Advice on a new driver and how to make it available

2017-03-23 Thread vk3anz
Thanks. First time using github (as a contributor) and first time writing to a wiki (yep - Luddite First Class: that's me!) I hope others find this useful. Susan >

[weewx-development] Re: Advice on a new driver and how to make it available

2017-03-20 Thread vk3anz
Hopefully the last request: I have what I believe should be the V1.0 gz file. What do I do with it now to make it available? I've not done this sort of thing before and (at least in this aspect) I'm a total novice. Thanks Susan

[weewx-development] Re: Advice on a new driver and how to make it available

2017-03-11 Thread vk3anz
Last (I hope) test version before release. Cleaned up the code, the install process and the variable names etc. Susan hp1000.tar.gz Description: Binary data

[weewx-development] Re: Advice on a new driver and how to make it available

2017-02-21 Thread vk3anz
Thanks for the advice - I had added the WindGustDir code in (all of 1 line!) but it is trivial to take it out again. Susan On Tuesday, February 21, 2017 at 2:01:20 PM UTC+11, mwall wrote: > > On Sunday, February 12, 2017 at 10:26:35 PM UTC-5, vk3...@gmail.com wrote: >> >> Just noticed that the

[weewx-development] Re: Advice on a new driver and how to make it available

2017-02-20 Thread vk3anz
Yep - Spotted that myself on Sunday. Thanks. Also took the advice about removing the extraneous lines form the install.py file - much better now. (I copied this from one of the example files pretty much without understanding the relation ship between these lines and the code in the main file

[weewx-development] Re: Advice on a new driver and how to make it available

2017-02-13 Thread vk3anz
Thanks for the feedback. I'll plead 'guilty' to not bumping the version number, but I've just downloaded and expanded the file I attached above and the line in the 'install.py' file that I think drives all this is: 'retry_wait' : 5, 'driver' :

[weewx-development] Re: Advice on a new driver and how to make it available

2017-02-12 Thread vk3anz
Just noticed that the beta of V3.7.0 is available. In the release notes from Tom he noted that any missing 'windGustDir' is to be determined by Weewx with this version. Please note that the last version of my driver (posted above) does assign 'windDir' to 'windGustDir'. Therefore, is it better

[weewx-development] Re: Advice on a new driver and how to make it available

2017-01-18 Thread vk3anz
I have attached the tar.gz file that I *think* will work as an extension but I've only managed to test it on my iMac with Weewx installed via the 'setup.py' method. Can some mind soul(s) please try this out (in a test environment in case it generates black holes etc.) before I put it into the

[weewx-development] Re: Advice on a new driver and how to make it available

2017-01-15 Thread vk3anz
(Busy weekend - I hope to get a 'first cut' version out shortly) I'm using the SETUP packet to get the units. At the moment I only read that packet when the driver start (i.e. if you change anything on the console you would need to 'bounce' Weewx to pick them up) but in principle there is

[weewx-development] Re: Inaccurate rain recordings

2016-11-24 Thread vk3anz
Thanks Gary. I'll check a few things out when I get home but I had not realised that I needed to provide the 'delta' rain value for each loop packet. I was passing back the 'daily rain so far' value so I'll look into changing that and see what happens. Susan