Wind_Speed_Sensor_Voltage_Type_0-5V__SKU_SEN0170-DFRobot

sen0170 Wind Speed Sensor Voltage Type 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

Feature

Connection Diagram

sen0170 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.

sen0170 Wind Speed sensor Diagram

Sample Code

/*!
 * @file  SEN0170.ino
 * @brief Reading wind speed rating
 * @copyright  Copyright (c) 2010 DFRobot Co.Ltd (http://www.dfrobot.com)
 * @license  The MIT License (MIT)
 * @author  DFRobot
 * @version  V1.0
 * @date  2023-08-03
 */

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

sen0170 Wind Speed sensor Dimension Diagram sen0170 Wind Speed sensor 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

DFshopping_car1.png Get Wind Speed Sensor from DFRobot Store or DFRobot Distributor.

Turn to the Top