Wind_Speed_Sensor_Voltage_Type(0 5V)_SKU_SEN0170 - jimaobian/DFRobotWiki GitHub Wiki

right

Introduction

The three type wind speed sensor is an instrument which can measure the wind speed.It is composed of shell, the wind cup and circuit module.Photovoltaic modules, industrial microcomputer processor, the current generator, electric current and so on are integrated in the internal drive.

The materials of sensor shell and wind cup is the aluminium alloy which use the special mold precision casting technology,the size of the tolerance is very small, the precision of the surface is very high,and internal circuit has been protection processing,the sensor has high strength, weather resistance, corrosion resistance and waterproof.

The plug of the cable is a military plug,it has a good anticorrosive and prevent erosion performance that it can ensure the instrument used for a long time,at the same time,In the case of using relevant specifications which 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 imported 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.

DFROBOT brings you the anemometer sensors, its wind speed were judged by adopting the output voltage signal (0 to 5 v), users can easily read the level of wind speed by our instruction and sample code.

Specification

  • Style: three cups
  • Material: aluminium alloy
  • The mode of its output signal:0-5V(Voltage signal)
  • supply voltage: DC 9-24V
  • Power consumption:Voltage MAX≤0.3W
  • Start wind speed:0.4-0.8m/s
  • resolution:0.1m/s
  • Effective wind speed measurement range:0-30m/s
  • System error:±3%
  • Transmission distance:More than 1000m
  • Transmission medium:Cable transmission
  • Connection mode:Three wire system
  • Working temperature:-40℃~80℃
  • Working humidity: 35%~85��

Feature

  • High hardness
  • Corrosion protection
  • Waterproofness
  • High precision

Connection Diagram

 Wind Speed sensor Diagram

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

 Wind Speed sensor Diagram

 Red ------ +9-24V  Black ---- GND  Yellow --- voltage signal  Blue ----- current signal  

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);
 }

Dimension Diagram

Relationship between Speed and Output value

Wind Speed Value
1 0.17
2 0.33
3 0.5
4 0.67
5 0.83
6 1
7 1.17
8 1.33
9 1.5
10 1.67
11 1.83
12 2
13 2.17
14 2.33
15 2.5
16 2.67
17 2.83
18 3
19 3.17
20 3.33
21 3.6
22 3.67
23 3.83
24 4
25 4.17
26 4.33
27 4.5
28 4.67
29 4.83
30 5

Formula: V=6*U

image:nextredirectltr.pngGo shopping wind speed sensor

category: Product Manual category: DFR Series category: Sensors category:source category:Diagram

⚠️ **GitHub.com Fallback** ⚠️