Skip to main content
Free Delivery  ·  COD Available  ·  15-Day Returns
Pricio
Wind Speed Sensor Current Type(4 to 20mA) Anemometer Kit (Waterproof & Industrial) — image 1
Hover to zoom

1 / 8 · Click to enlarge

Wind Speed Sensor Current Type(4 to 20mA) Anemometer Kit (Waterproof & Industrial)

25+ bought in past month
AI Summary
Wind Speed and Direction Sensors for professionals

The Wind Speed Sensor Current Type(4 to 20mA) Anemometer Kit (Waterproof & Industrial) is a premium wind speed and direction sensors designed for professionals. It features Item Type: Sensor and Model No. / Name: Wind Speed Sensor.

water-resistant
₹5,524
Free Shipping💵 COD Available

Available Offers

Free Delivery on this order. No minimum order value.

15-Day Easy Returns — hassle-free return & full refund.

Secure Payment — 100% safe checkout with UPI, Cards & Net Banking.

Total: ₹5,524
Buying tip: A quality investment for dependable performance and premium build quality.
Estimated delivery: 16 Aug30 Aug
Free Shipping
Pan India delivery
15-Day Returns
Hassle-free policy
Secure Payment
Razorpay protected
Quality Assured
Vetted products only

Available Offers

💳

5% Cashback

Pay with UPI & get 5% cashback (up to ₹50) via Razorpay

🏦

No-Cost EMI

Available on select bank cards at checkout. 0% interest for 3 months.

📦

Free Shipping

Free delivery on all orders. No minimum order value.

💵

Cash on Delivery

COD available on orders up to ₹5,000 across India.

Quick Specs

Item Type: Sensor
Model No. / Name: Wind Speed Sensor
Power Consumption (W): Voltage MAX ≤ 0.3W
Signal Range: 4 to 20mA
Resolution: 0.1(m/s)
Measurement Range: 0-30m/s

Ideal For

Electronics projectsArduino / Raspberry Pi buildsPrototyping
Share:
SKU: robu-949449Category: Wind Speed and Direction Sensors

About This Product

The Wind Speed Sensor Current Type(4 to 20mA) Anemometer Kit (Waterproof & Industrial) is a premium wind speed and direction sensors designed for professionals. It delivers reliable performance at an accessible price.

Key Specifications

  • Item Type: Sensor
  • Model No. / Name: Wind Speed Sensor
  • Power Consumption (W): Voltage MAX ≤ 0.3W — works with standard household power
  • Signal Range: 4 to 20mA — reliable connection even at a distance
  • Resolution: 0.1(m/s)
  • Measurement Range: 0-30m/s — reliable connection even at a distance
  • System error: ±3%
  • Transmission Distance: < 1000

Why Buy from Pricio?

Pricio sources this product directly, cutting out multiple middlemen. Every order includes free shipping, a 15-day return policy, and secure payment via Razorpay.

Are you wandering to build a device that is used to detect the direction of air in the atmosphere and the pressure of air? So, here is the solution for you. you can buy this sensor from Pricio.in at a reasonable price

The three Cups type Wind Speed Sensor Current Type(4 to 20mA) AnemometerKit is an instrument that can measure the wind speed. It is composed of a shell, the wind cup, and the circuit module. Photovoltaic modules, industrial microcomputer processors, the current generator, electric current, and so on are integrated into the internal drive.

The materials of sensor shell and back color coted wind Cups are of aluminum alloy which uses the special mold precision casting technology, the size of the tolerance is very small. The precision of the surface is very high, and the internal circuit has been protection processed, the sensor has high strength, weather resistance, corrosion resistance, and is waterproof.

The plug of the cable is a military plug, it has a good anticorrosive and prevents erosion performance that it can ensure the instrument used for a long time, at the same time, In the case of using relevant specifications that ensure the accuracy of the wind speed acquisition.

The material of the circuit PCB is the military-grade A which ensure the stability of the parameters and the quality of the electrical properties; Electronic components are all industrial chip which makes overall has extremely reliable electromagnetic interference resistance and can ensure that the host can work normally in - 20 ℃ ~ + 50 ℃, humidity 35% ~ 85% (condensation).

This product can be widely used in engineering machinery (crane, crawler crane, door crane, tower crane, etc.), railways, ports, docks, power plants, meteorological, cableway, the environment, greenhouse, breeding, air conditioning, energy monitoring, agriculture, health, clean room areas such as wind speed measurement, and the corresponding signal output.

Pricio.in brings you the anemometer sensors, its wind speed was judged by adopting the output in varying current in the range of 4mA to 20mA, users can easily read the level of wind speed by our instruction and sample code.

Please make the external power (DC 12-24V) and the wiring to Arduino on the same ground, i.e. connect GND to Arduino as well as to external power's GND. In the diagram, it was not indicated out.

Note: This Anemometer produces the current output in the range of 4 to 20mA  We have another variant that produces voltage Output in the range of 0 to 5 V DC acc0rding to the speed of the wind. Click Here to see.  To Explore more Environmental sensors, Click here

Please make the external power (DC 9-24V) and the wiring to Arduino on the same ground, i.e. connect GND to Arduino as well as to external power's GND.
Sample Code:
/*
Connect the voltage signal wire to Arduino analog interface:
Yellow Cable<---->A0
*/

 void setup()
 {
   Serial.begin(9600);
 }

 void loop()
 {
   int sensorValue = analogRead(A0);
   float outvoltage = sensorValue * (5.0 / 1023.0);
   Serial.print("outvoltage = ");
   Serial.print(outvoltage);
   Serial.println("V");
   int Level = 6*outvoltage;//The level of wind speed is proportional to the output voltage.
   Serial.print("wind speed is ");
   Serial.print(Level);
   Serial.println(" level now");
   Serial.println();
   delay(500);
 }

Features :

  1. High hardness
  2. Corrosion protection
  3. Waterproofness
  4. High precision
  5. Dimensions:
    • Cups Outer Diameter: 50 mm.
    • Body Outer Diameter: 39 mm.
    • Base Diameter: 60 mm.
    • Screw Hole Diameter: 7 mm.

Package Includes :

1 x Wind Speed Sensor Voltage Type(0-5V) Anemometer. 1 x 3-Meter Connecting Cable with Crimped Connector. 1x Mounting Accessories set.

Setup Guide

1
Identify the pins
Locate VCC (power), GND (ground), and data pins (SDA/SCL for I2C, MOSI/MISO for SPI, or TX/RX for UART). Refer to the pinout diagram on the product page.
2
Wire to your microcontroller
Connect VCC to 3.3V or 5V (check the module spec), GND to GND, and data pins to the appropriate GPIO pins on your Arduino or Raspberry Pi.
3
Install libraries
In Arduino IDE, go to Sketch → Include Library → Manage Libraries and search for the sensor library. Install the recommended version.
4
Upload example sketch
Open File → Examples → [library name] → Basic Example. Upload to your board and open Serial Monitor to view output.
5
Calibrate if needed
Some sensors (temperature, humidity, distance) may need a short warm-up period or calibration. Run the calibration sketch if provided.