---
product_id: 207396010
title: "Weather Meter Kit - Station Includes Analog sensors Wind Vane Cup Anemometer Tipping Bucket rain Gauge RJ11 terminated Cables"
brand: "sparkfun"
price: "936 zł"
currency: PLN
in_stock: true
reviews_count: 5
category: "Spark Fun"
url: https://www.desertcart.pl/products/207396010-weather-meter-kit-station-includes-analog-sensors-wind-vane-cup
store_origin: PL
region: Poland
---

# 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:** 936 zł
**Availability:** ✅ In Stock

## Summary

> 🌦️ Own the Forecast: Build your pro-grade weather station and never miss a drop or gust!

## 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?** 936 zł with free shipping
- **Is it available?** Yes, in stock and ready to ship
- **Where can I buy it?** [www.desertcart.pl](https://www.desertcart.pl/products/207396010-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 batteries required—passive sensors use sealed magnetic reed switches, ensuring low maintenance and long-term reliability.
- • **Precision Wind Metrics:** Magnetic reed switches deliver reliable wind speed and direction data with up to 16 directional positions for nuanced weather insights.
- • **Robust Mounting System:** Includes a two-part mast, mounting arms, clamps, and zip ties for secure, customizable installation in any outdoor environment.
- • **Plug & Play Connectivity:** RJ11 terminated cables simplify sensor integration with your Arduino or weather shield setup—engineered for seamless DIY weather stations.
- • **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 is a comprehensive DIY weather station solution featuring passive analog sensors for wind speed, wind direction, and rainfall measurement. It uses sealed magnetic reed switches for accurate, low-maintenance data capture, with RJ11 cables for easy connectivity. The kit includes all mounting hardware for a sturdy outdoor setup, making it ideal for agriculturalists, meteorologists, and weather enthusiasts seeking precise environmental monitoring.

## 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: 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: 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 |
| Batteries required | No |
| Best Sellers Rank | 428,193 in Garden ( See Top 100 in Garden ) 1,061 in Weather Stations |
| Customer Reviews | 4.3 4.3 out of 5 stars (50) |
| Date First Available | 31 Jan. 2020 |
| Included components | Wind bay, wind gauge, rain meter, cables, mounting hardware |
| Item model number | 15901 |
| Item weight | 1.59 Kilograms |
| Product Dimensions | 38 x 41 x 14.5 cm; 1.59 kg |
| Specific uses | Wind Direction wind speed rain accumulation |

## Product Details

- **Brand:** SparkFun
- **Colour:** White
- **Connectivity technology:** RJ11 Cable
- **Included components:** Wind bay, wind gauge, rain meter, cables, mounting hardware
- **Material:** Multiple
- **Power source:** External Powered
- **Recommended uses for product:** Garden Home Laboratory Classroom
- **Special feature:** Lightweight
- **Specific uses for product:** Wind Direction wind speed rain accumulation
- **Style:** Modern

## 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

### ⭐⭐⭐⭐⭐ Review
*by M***E on 28 October 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.

### ⭐⭐⭐⭐⭐ Review
*by R***N on 25 August 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.

### ⭐⭐⭐⭐⭐ Review
*by J***. on 9 May 2023*

I had an Ambient Weather model 2080 whose anemometer had quit registering on the base station, so I ordered SparkFun's weather meter kit. It was a perfect match for the Ambient Weather pieces. All I had to do was plug it into the power source/transmitter in the thermometer/humidity part for it to work. Here's a workaround for the only drawback I found, which was that with an additional length of pipe to work with, there was no way to keep the top pipe from twisting on the bottom pipe, which changed the reported wind direction. The SparkFun kit came with no instructions, so here's what to do: the arm which holds the rain gauge piece has a collar to hold it on the pipe, with two screws on top and two on the bottom. Secure the top two screws on the top pipe and the bottom two screws on the bottom pipe, with the seam between the pipes in between. This will prevent the top pipe from twisting and changing the reported wind direction.

## 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.pl/products/207396010-weather-meter-kit-station-includes-analog-sensors-wind-vane-cup](https://www.desertcart.pl/products/207396010-weather-meter-kit-station-includes-analog-sensors-wind-vane-cup)

---

*Product available on Desertcart Poland*
*Store origin: PL*
*Last updated: 2026-05-14*