---
product_id: 182966504
title: "Weather Meter Kit - Station Includes Analog sensors Wind Vane Cup Anemometer Tipping Bucket rain Gauge RJ11 terminated Cables"
brand: "sparkfun"
price: "758.57 DT"
currency: TND
in_stock: true
reviews_count: 8
category: "Spark Fun"
url: https://www.desertcart.tn/products/182966504-weather-meter-kit-station-includes-analog-sensors-wind-vane-cup
store_origin: TN
region: Tunisia
---

# 16-position wind direction sensing 0.011" rain increments tipping bucket Wind speed via magnetic reed switch Weather Meter Kit - Station Includes Analog sensors Wind Vane Cup Anemometer Tipping Bucket rain Gauge RJ11 terminated Cables

**Brand:** sparkfun
**Price:** 758.57 DT
**Availability:** ✅ In Stock

## Summary

> 🌦️ Own the Weather: Master wind and rain data like a pro with this all-in-one analog sensor kit!

## Quick Answers

- **What is this?** Weather Meter Kit - Station Includes Analog sensors Wind Vane Cup Anemometer Tipping Bucket rain Gauge RJ11 terminated Cables by sparkfun
- **How much does it cost?** 758.57 DT with free shipping
- **Is it available?** Yes, in stock and ready to ship
- **Where can I buy it?** [www.desertcart.tn](https://www.desertcart.tn/products/182966504-weather-meter-kit-station-includes-analog-sensors-wind-vane-cup)

## Best For

- sparkfun enthusiasts

## Why This Product

- Trusted sparkfun brand quality
- Free international shipping included
- Worldwide delivery with tracking
- 15-day hassle-free returns

## Key Features

- • **Passive Sensor Design:** No active electronics inside sensors means easy interpretation and long-term reliability when paired with your own voltage source.
- • **Precision Wind Metrics:** Magnetic reed switches deliver reliable wind speed and direction data with up to 16 directional positions for nuanced weather insights.
- • **Robust Modular Mounting:** Includes a two-part mast, mounting arms, clamps, and zip ties for secure, customizable installation in any environment.
- • **Plug & Play Connectivity:** RJ11 terminated cables simplify sensor integration with your existing weather station or Arduino setup—no guesswork required.
- • **Accurate Rainfall Tracking:** Self-emptying tipping bucket rain gauge measures rainfall in precise 0.011-inch increments, perfect for real-time precipitation monitoring.

## Overview

The Weather Meter Kit by SparkFun is a comprehensive analog weather station solution featuring magnetic reed switch sensors for wind speed, wind direction, and rainfall measurement. Designed for professionals and hobbyists alike, it includes a wind vane, cup anemometer, and tipping bucket rain gauge with RJ11 cables and mounting hardware. Its passive sensor design ensures straightforward data capture when powered externally, making it ideal for custom Arduino or lab setups. Durable yet modular, this kit empowers precise environmental monitoring with easy installation and reliable analog outputs.

## Description

Whether you're an agriculturalist, a professional meteorologist or a weather hobbyist, building your own weather station can be a really rewarding project. When you're measuring weather, however, you need some pretty specialized sensors. This kit represents the three core components of weather measurement: wind speed, wind direction and rainfall.None of the sensors in this kit contain active electronics, instead they use sealed magnetic reed switches and magnets so you'll need to source a voltage to take any measurements. The positive side of this is that the sensors are easy to interpret:The rain gauge is a self-emptying bucket-type rain gauge which activates a momentary button closure for each 0.011" of rain that are collected. The anemometer (wind speed meter) encodes the wind speed by simply closing a switch which each rotation. A wind speed of 1.492 MPH produces a switch closure once per second. Finally, the wind vane reports wind direction as a voltage which is produced by the combination of resistors inside the sensor. The vane’s magnet may close two switches at once, allowing up to 16 different positions to be indicated.All of the included sensors are supplied with RJ11 terminated cables, for information on the pin-out of the cable, check out the images.

Review: Good value for price. Easy to interface. Questionable long term durability. - I interfaced these wind and rain sensors to an Arduino. The sensors are actually just simple magnetic switches. The anemometer has a magnetic reed switch that closes every time it rotates around one time, and it has "somewhat" of a linear ratio of wind speed, to # of rotations per second. The wind vane uses multiple magnetic reed switches to create a resistor based voltage divider to generate different voltages for the 8 wind directions. Most of the time, you will only get directions for N, NE, E, SE, S, SW, W, and NE, but sometimes you can get 2 switches to close and get the inbetween directions of ESE, WSW, ENE, etc... not every unit seems to do this, and you cannot reliably get all 16 directions, so when programming, assume you're only going to get the 8 cardinal directions. The rain gauge is also another simple switch. Every time the measuring bucket inside the gauge tips, the switch will close/open. Every tip / switch change equals .011" of rain. Just count the number of switch toggles and you get rain fall. You can measure the time between tips to get the rate of rainfall in inches/hour. The 3 sensors are all made of plastic as are the supporting arms. The metal pole and screws used to attach the sensors seem like stainless steel. The sensors use RJ11 (telephone jack) connectors to connect. The wire from the sensors doesn't seem like anything weather resistant, so I an concerned that long term UV exposure will damage them in the long term, but right now I am just speculating. I got all of mine hooked up to an Arduino Nano and they work well for now.
Review: Good kit with one caveat so far - So far the kit has been good, from what I can tell somewhat accurate result though I'm still in the building phase of my weather station. I do have one caveat though. If you are using this kit with SparkFun's weather shield, you will need to edit their source file of the "Weather Meter Kit" library. Specifically the SparkFun_Weather_Meter_Kit_Arduino_Library.cpp file. There is a comment about the shield using a different circuit therefore the values are different. I was getting wildly inaccurate wind direction readings and thought it was defective. Going to their sight and finding the weather meter station data sheet, I was able to confirm all of the readings of the resistance by direction were accurate. That meant the problem was either code or on the shield. Turns out a bit of both. In the referenced file I commented out these lines: // _calibrationParams.vaneADCValues[WMK_ANGLE_0_0] = 3143; // _calibrationParams.vaneADCValues[WMK_ANGLE_22_5] = 1624; // _calibrationParams.vaneADCValues[WMK_ANGLE_45_0] = 1845; // _calibrationParams.vaneADCValues[WMK_ANGLE_67_5] = 335; // _calibrationParams.vaneADCValues[WMK_ANGLE_90_0] = 372; // _calibrationParams.vaneADCValues[WMK_ANGLE_112_5] = 264; // _calibrationParams.vaneADCValues[WMK_ANGLE_135_0] = 738; // _calibrationParams.vaneADCValues[WMK_ANGLE_157_5] = 506; // _calibrationParams.vaneADCValues[WMK_ANGLE_180_0] = 1149; // _calibrationParams.vaneADCValues[WMK_ANGLE_202_5] = 979; // _calibrationParams.vaneADCValues[WMK_ANGLE_225_0] = 2520; // _calibrationParams.vaneADCValues[WMK_ANGLE_247_5] = 2397; // _calibrationParams.vaneADCValues[WMK_ANGLE_270_0] = 3780; // _calibrationParams.vaneADCValues[WMK_ANGLE_292_5] = 3309; // _calibrationParams.vaneADCValues[WMK_ANGLE_315_0] = 3548; // _calibrationParams.vaneADCValues[WMK_ANGLE_337_5] = 2810; and uncommented the similar lines immediately below them. Now the wind direction is accurate.

## Features

- Kit represents the three core components of weather measurement: wind speed, wind direction and rainfall.
- It uses sealed magnetic reed switches and magnets so you'll need to source a voltage to take any measurements.
- All of the sensors in the weather meter kit are passive components. This means you will need a voltage source in order to measure anything with them.
- Sensors include Wind vane, Cup anemometer, Tipping bucket rain gauge. RJ11 terminated cables.
- Stand: Two-part mounting mast, Rain gauge mounting arm, Wind meter mounting bar, 2x Mounting clamps and 4x Zip ties.

## Technical Specifications

| Specification | Value |
|---------------|-------|
| ASIN | B084DBXMPX |
| Additional Features | Weather Resistant |
| Are batteries included? | No |
| Best Sellers Rank | #197,447 in Patio, Lawn & Garden ( See Top 100 in Patio, Lawn & Garden ) #236 in Weather Stations |
| Brand | SparkFun |
| Brand Name | SparkFun |
| Color | White |
| Connectivity Technology | Analog |
| Customer Reviews | 4.3 out of 5 stars 53 Reviews |
| Display Type | no display |
| Frequency | 1 Hz |
| Included Components | Cable, Stand, Wind vane, Cup anemometer, Tipping bucket rain gauge, Mounting Hardware |
| Item Weight | 1.59 Kilograms |
| Manufacturer | Fine Offset Electronics Co., Ltd. |
| Material | Multiple |
| Material Type | Multiple |
| Model | 15901 |
| Part Number | 15901 |
| Power Source | External Powered |
| Recommended Uses For Product | Garden Home Laboratory Classroom |
| Sensor Technology | Magnetic Reed Switch |
| Shape | Oval |
| Special Feature | Weather Resistant |
| Specific Uses For Product | Wind Direction wind speed rain accumulation |
| Style Name | Weather |

## Product Details

- **Brand:** SparkFun
- **Color:** White
- **Connectivity Technology:** Analog
- **Included Components:** Cable, Stand, Wind vane, Cup anemometer, Tipping bucket rain gauge, Mounting Hardware
- **Material:** Multiple
- **Power Source:** External Powered
- **Recommended Uses For Product:** Garden Home Laboratory Classroom
- **Special Feature:** Weather Resistant
- **Specific Uses For Product:** Wind Direction wind speed rain accumulation
- **Style:** Weather

## Images

![Weather Meter Kit - Station Includes Analog sensors Wind Vane Cup Anemometer Tipping Bucket rain Gauge RJ11 terminated Cables - Image 1](https://m.media-amazon.com/images/I/519rO0OXR2L.jpg)
![Weather Meter Kit - Station Includes Analog sensors Wind Vane Cup Anemometer Tipping Bucket rain Gauge RJ11 terminated Cables - Image 2](https://m.media-amazon.com/images/I/51PL1hoUEXL.jpg)
![Weather Meter Kit - Station Includes Analog sensors Wind Vane Cup Anemometer Tipping Bucket rain Gauge RJ11 terminated Cables - Image 3](https://m.media-amazon.com/images/I/41jGMltHNoL.jpg)
![Weather Meter Kit - Station Includes Analog sensors Wind Vane Cup Anemometer Tipping Bucket rain Gauge RJ11 terminated Cables - Image 4](https://m.media-amazon.com/images/I/41GA0E5ti3L.jpg)
![Weather Meter Kit - Station Includes Analog sensors Wind Vane Cup Anemometer Tipping Bucket rain Gauge RJ11 terminated Cables - Image 5](https://m.media-amazon.com/images/I/51Y6mcQRUUL.jpg)

## Questions & Answers

**Q: Is it durable in the long term? I mean, is it industrial quality or it is intended to be used only by hobbyists?**
A: I’ve had mine installed in the weather for 15 months with no visible weathering. It’s not industrial quality, but sufficiently sturdy to survive the Florida weather.

**Q: Quiero comprar  pequeña estacion metereologica, cuanto me cuesta y tiempo de entrega a bolivia**
A: The Amazon system should be able to give you delivery time and cost.

**Q: No outdoor temperature?**
A: Temperature is usually done digitally and is often times included in whatever weather board you chose to hook up to this kit to read the analog sensors.  These are just the analog sensors that you might want to use along with a weather board and other digital sensors you might want to include.

**Q: Can you recommend me a board to use this product on a Raspberry Pi?  thanks.**
A: We do not make a pi hat or companion board that is designed to go with Raspberry Pi boards.  It may be that you will need to use a combination of boards/sensors to make it work if you have a specific Raspberry Pi board in mind.  However, we do have a Raspberry Pi RP2040 processor board for MicroMod and a MicroMod Weather Carrier board that will work.

## Customer Reviews

### ⭐⭐⭐⭐⭐ Good value for price. Easy to interface. Questionable long term durability.
*by M***E on October 28, 2020*

I interfaced these wind and rain sensors to an Arduino. The sensors are actually just simple magnetic switches. The anemometer has a magnetic reed switch that closes every time it rotates around one time, and it has "somewhat" of a linear ratio of wind speed, to # of rotations per second. The wind vane uses multiple magnetic reed switches to create a resistor based voltage divider to generate different voltages for the 8 wind directions. Most of the time, you will only get directions for N, NE, E, SE, S, SW, W, and NE, but sometimes you can get 2 switches to close and get the inbetween directions of ESE, WSW, ENE, etc... not every unit seems to do this, and you cannot reliably get all 16 directions, so when programming, assume you're only going to get the 8 cardinal directions. The rain gauge is also another simple switch. Every time the measuring bucket inside the gauge tips, the switch will close/open. Every tip / switch change equals .011" of rain. Just count the number of switch toggles and you get rain fall. You can measure the time between tips to get the rate of rainfall in inches/hour. The 3 sensors are all made of plastic as are the supporting arms. The metal pole and screws used to attach the sensors seem like stainless steel. The sensors use RJ11 (telephone jack) connectors to connect. The wire from the sensors doesn't seem like anything weather resistant, so I an concerned that long term UV exposure will damage them in the long term, but right now I am just speculating. I got all of mine hooked up to an Arduino Nano and they work well for now.

### ⭐⭐⭐⭐⭐ Good kit with one caveat so far
*by R***N on August 25, 2023*

So far the kit has been good, from what I can tell somewhat accurate result though I'm still in the building phase of my weather station. I do have one caveat though. If you are using this kit with SparkFun's weather shield, you will need to edit their source file of the "Weather Meter Kit" library. Specifically the SparkFun_Weather_Meter_Kit_Arduino_Library.cpp file. There is a comment about the shield using a different circuit therefore the values are different. I was getting wildly inaccurate wind direction readings and thought it was defective. Going to their sight and finding the weather meter station data sheet, I was able to confirm all of the readings of the resistance by direction were accurate. That meant the problem was either code or on the shield. Turns out a bit of both. In the referenced file I commented out these lines: // _calibrationParams.vaneADCValues[WMK_ANGLE_0_0] = 3143; // _calibrationParams.vaneADCValues[WMK_ANGLE_22_5] = 1624; // _calibrationParams.vaneADCValues[WMK_ANGLE_45_0] = 1845; // _calibrationParams.vaneADCValues[WMK_ANGLE_67_5] = 335; // _calibrationParams.vaneADCValues[WMK_ANGLE_90_0] = 372; // _calibrationParams.vaneADCValues[WMK_ANGLE_112_5] = 264; // _calibrationParams.vaneADCValues[WMK_ANGLE_135_0] = 738; // _calibrationParams.vaneADCValues[WMK_ANGLE_157_5] = 506; // _calibrationParams.vaneADCValues[WMK_ANGLE_180_0] = 1149; // _calibrationParams.vaneADCValues[WMK_ANGLE_202_5] = 979; // _calibrationParams.vaneADCValues[WMK_ANGLE_225_0] = 2520; // _calibrationParams.vaneADCValues[WMK_ANGLE_247_5] = 2397; // _calibrationParams.vaneADCValues[WMK_ANGLE_270_0] = 3780; // _calibrationParams.vaneADCValues[WMK_ANGLE_292_5] = 3309; // _calibrationParams.vaneADCValues[WMK_ANGLE_315_0] = 3548; // _calibrationParams.vaneADCValues[WMK_ANGLE_337_5] = 2810; and uncommented the similar lines immediately below them. Now the wind direction is accurate.

### ⭐⭐ Eh.. sad
*by D***R on March 20, 2026*

This was iffy. Not my proudest buy for a home made weather station.

## Frequently Bought Together

- Weather Meter Kit - Station Includes Analog sensors Wind Vane Cup Anemometer Tipping Bucket rain Gauge RJ11 terminated Cables
- Bridgold 2pcs MCP3008-I/P MCP3008 MCP 8-Channel 10-Bit A/D Converters with SPI Serial Interface 2.7V,DIP-16.
- BOJACK 3 Values 130 Pcs Solderless Breadboard 4 Pcs 830 Tie Points & 400 Tie Points & 126 Pcs Flexible Breadboard Jumper Wires

---

## Why Shop on Desertcart?

- 🛒 **Trusted by 1.3+ Million Shoppers** — Serving international shoppers since 2016
- 🌍 **Shop Globally** — Access 737+ million products across 21 categories
- 💰 **No Hidden Fees** — All customs, duties, and taxes included in the price
- 🔄 **15-Day Free Returns** — Hassle-free returns (30 days for PRO members)
- 🔒 **Secure Payments** — Trusted payment options with buyer protection
- ⭐ **TrustPilot Rated 4.5/5** — Based on 8,000+ happy customer reviews

**Shop now:** [https://www.desertcart.tn/products/182966504-weather-meter-kit-station-includes-analog-sensors-wind-vane-cup](https://www.desertcart.tn/products/182966504-weather-meter-kit-station-includes-analog-sensors-wind-vane-cup)

---

*Product available on Desertcart Tunisia*
*Store origin: TN*
*Last updated: 2026-06-01*