메이커 Maker

Wind Speed Sensor Voltage Type(0-5V) SKU:SEN0170

지구빵집 2018. 1. 11. 09:53
반응형




Wind Speed Sensor Voltage Type(0-5V) SKU:SEN0170


원문 설명서 출처 : https://www.dfrobot.com/wiki/index.php/Wind_Speed_Sensor_Voltage_Type(0-5V)_SKU:SEN0170 


 https://www.dfrobot.com/product-1114.html - 구매 링크 Anemometer Kit (0-5V)

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



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.


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



Sample Code


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/*
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);
 }
 
cs



Dimension Diagram




Relationship between Speed and Output value

Wind SpeedValue
10.17
20.33
30.5
40.67
50.83
61
71.17
81.33
91.5
101.67
111.83
122
132.17
142.33
152.5
162.67
172.83
183
193.17
203.33
213.6
223.67
233.83
244
254.17
264.33
274.5
284.67
294.83
305


Formula: V=6*U





반응형