(01-07-2017, 12:21)JT118 Wrote: [ -> ]My Questions are:
Will the A100L2, which I have, work?
I think it will work. You will let me know!
Supposing you are using the latest TX software, search for this:
Code:
// --- Vector A100LK ---
#if (WSpeedSensor_Type == 70) // Vector Intruments, model A100LK : Speed Pulse/sec 0.514444 m/s
#define ClickPerRev 10
#define FORM_FACTOR 0.5144
#endif
immediately after the #endif add this:
Code:
#if (WSpeedSensor_Type == 71) // Vector Intruments, model A100L2 : Speed Pulse/sec 0.514444 m/s
#define ClickPerRev 13
#define FORM_FACTOR 0.5144
#endif
Now, on the user configurable settings, choose 71 as Anemometer type
Code:
#define WSpeedSensor_Type 71
Waiting to hear from you. If it works, this anemometer model will be added to the list of supported weather instruments.
Regards
It works, thank you as always.
Thank you JT118
Please keep monitoring the readings, and if possible compare the wind average speed with the readings of the other weather stations you have.
Theoretically the WeatherDuino Pro2 system can work with any pulse anemometer, provided we know her specifications. However, allowing the user to choose among a list of predefined and tested types makes things easier.
Those are pro looking instruments there JT118
I assume this would work too; ( I also have got an A100R )
// --- Vector A100LK ---
#if (WSpeedSensor_Type == 70) // Vector Intruments, model A100LK : Speed Pulse/sec 0.514444 m/s
#define ClickPerRev 10
#define FORM_FACTOR 0.5144
#endif
// --- Vector A100L2 ---
#if (WSpeedSensor_Type == 71) // Vector Intruments, model A100L2 : Speed Pulse/sec 0.514444 m/s
#define ClickPerRev 13
#define FORM_FACTOR 0.5144
#endif
// --- Vector A100R ---
#if (WSpeedSensor_Type == 72) // Vector Intruments, model A100R : Speed Pulse/sec 0.514444 m/s
#define ClickPerRev 1
#define FORM_FACTOR 0.5144
#endif
http://www.windspeed.co.uk/ws/index.php?...48&op=page
I'm afraid that it should be:
Code:
// --- Vector A100R ---
#if (WSpeedSensor_Type == 72) // Vector Intruments, model A100R : Speed Pulse/sec 1.25 m/s
#define ClickPerRev 1
#define FORM_FACTOR 1.25
#endif
Your collection of weather instruments is impressive. The Weatherduino Pro2 system is thankful for that

(04-07-2017, 23:07)Werk_AG Wrote: [ -> ]I'm afraid that it should be:
Code:
// --- Vector A100R ---
#if (WSpeedSensor_Type == 72) // Vector Intruments, model A100R : Speed Pulse/sec 1.25 m/s
#define ClickPerRev 1
#define FORM_FACTOR 1.25
#endif
Your collection of weather instruments is impressive. The Weatherduino Pro2 system is thankful for that 
Of course, I should have seen that! Collection built up over years mostly off ebay, buying parts of systems to keep others going.