Weather Station Kit with Anemometer/Wind Vane/Rain Bucket (ของแท้จาก DFRobot)

Weather Station Kit with Anemometer/Wind Vane/Rain Bucket (ของแท้จาก DFRobot)
Weather Station Kit with Anemometer/Wind Vane/Rain Bucket (ของแท้จาก DFRobot)Weather Station Kit with Anemometer/Wind Vane/Rain Bucket (ของแท้จาก DFRobot)Weather Station Kit with Anemometer/Wind Vane/Rain Bucket (ของแท้จาก DFRobot)Weather Station Kit with Anemometer/Wind Vane/Rain Bucket (ของแท้จาก DFRobot)Weather Station Kit with Anemometer/Wind Vane/Rain Bucket (ของแท้จาก DFRobot)Weather Station Kit with Anemometer/Wind Vane/Rain Bucket (ของแท้จาก DFRobot)Weather Station Kit with Anemometer/Wind Vane/Rain Bucket (ของแท้จาก DFRobot)Weather Station Kit with Anemometer/Wind Vane/Rain Bucket (ของแท้จาก DFRobot)Weather Station Kit with Anemometer/Wind Vane/Rain Bucket (ของแท้จาก DFRobot)
รหัสสินค้า AS50228
หมวดหมู่ วัดสภาพแวดล้อมและแก๊ส Environmental / Gas
ราคา 7,785.00 บาท
ขออภัย สินค้าหมด
หนังสือรับรองบริษัท
บุ๊คแบ๊งค์
คุ้มครองโดย LnwPay
ดูวิธีการใช้งาน และ arduino source code ได้ที่ Click

ดูวิธีประกอบได้จาก คลิปด้านล่าง



ตัวอย่างโปรเจคน่าสนใจ Click

Description:
Ever want to build your own weather station?  This IoT weather station kit includes an anemometer, wind vane, and rain bucket. The serial communication method provides good compatibility and makes it easy to use with most controllers in the market.

Together with other components, this IoT weather station kit can be widely used in measuring wind/rain in engineering, railways, docks, power plants, meteorological, cableway, environment study, agriculture, energy monitoring, health study with corresponding signal output.

Also, it is compatible with Arduino devices.

 

Weather Station Kit with Anemometer/Wind Vane/Rain Bucket

Version Update (2016/3/28): Upgrade the Temperature and Humidity sensor, the range and accuracy will be improved.



Project 1Make Your Own Arduino Weather Station
This durable Arduino weather station kit includes an anemometer, wind vane, rain bucket and DH11 temperature and humidity sensor. It can transmit data via serial or RF interfaces.  

Hardware List
LCD12864 Shield for Arduino
Weather Station Kit with Solar Panel
Weather Station Kit with Anemometer/Wind Vane/Rain Bucket
Bluno M3 - A STM32 ARM with Bluetooth 4.0 (Arduino Compatible)


APPLICATIONS

  • Weather Station
  • Weather Monitoring

SPECIFICATION

  • Operating voltage: 5V
  • Temperature range: -40~80℃
  • Humidity range: 0~99%
  • Package Dimension: 20*18*30 CM (7.87*7.09*11.81")
  • Weight: 4480g

DOCUMENTS

SHIPPING LIST

  • Anemometer   x1
  • Wind vane   x1
  • Rain bucket   x1
  • Sensor Board  x1
  • Stainless steel studdle (30cm) (11.81") x1
  • component package  x1

Board Overview

Board Overview

No. Description
B Rainfall
C Wind speed and direction
D Data output
E Indicator light
I I2C temperature, humidity and air pressure port
J1 Metric & Imperialb Jumpers
J2 Data interface 2400/9600 baud rate Jumpers

Data Output Format

c000s000g000t082r000p000h48b10022*3C

Output 37 bytes per second, including CR/LF at the end of the data.

Data Analysis:

  • c000: Wind direction angle, unit: degree.
  • s000: wind speed in 1 minute, unit: miles per hour
  • g000: the highest wind speed in 5 minutes, unit: miles per hour
  • t086: Temperature (Fahrenheit)
  • r000: Rainfall in 1 hour (0.01 inches)
  • p000: Rainfall in 24 hours (0.01 inches)
  • h53: Humidity (00% = 99%)
  • b10020: Air pressure (0.1 hpa)

Note: The board will make a hardware self-check before it works, it will output “...” when it doesn’t detect the related devices. For example, If the temperature & humidity sensor and barometer are not installed or broken, it will output: '''c000s000g000t...r000p000h..b..... '''

Indicator Light

  • DAT flashes synchronously when sending data
  • TX flashes synchronously when sampling wind speed
  • RX flashes synchronously when rain sensor is working

Tutorial

Requirements

Connection Diagram

Connection Diagram

Please unplug the cable on the TX&RX interface, or it will interfere with the sketch uploading.

Sample Code

char databuffer[35];
double temp;

void getBuffer() //Get weather status data
{
int index;
for (index = 0;index < 35;index ++)
{
if(Serial.available())
{
databuffer[index] = Serial.read();
if (databuffer[0] != 'c')
{
index = -1;
}
}
else
{
index --;
}
}
}

int transCharToInt(char *_buffer,int _start,int _stop) //char to int)
{
int _index;
int result = 0;
int num = _stop - _start + 1;
int _temp[num];
for (_index = _start;_index <= _stop;_index ++)
{
_temp[_index - _start] = _buffer[_index] - '0';
result = 10*result + _temp[_index - _start];
}
return result;
}

int WindDirection() //Wind Direction
{
return transCharToInt(databuffer,1,3);
}

float WindSpeedAverage() //air Speed (1 minute)
{
temp = 0.44704 * transCharToInt(databuffer,5,7);
return temp;
}

float WindSpeedMax() //Max air speed (5 minutes)
{
temp = 0.44704 * transCharToInt(databuffer,9,11);
return temp;
}

float Temperature() //Temperature ("C")
{
temp = (transCharToInt(databuffer,13,15) - 32.00) * 5.00 / 9.00;
return temp;
}

float RainfallOneHour() //Rainfall (1 hour)
{
temp = transCharToInt(databuffer,17,19) * 25.40 * 0.01;
return temp;
}

float RainfallOneDay() //Rainfall (24 hours)
{
temp = transCharToInt(databuffer,21,23) * 25.40 * 0.01;
return temp;
}

int Humidity() //Humidity
{
return transCharToInt(databuffer,25,26);
}

float BarPressure() //Barometric Pressure
{
temp = transCharToInt(databuffer,28,32);
return temp / 10.00;
}

void setup()
{
Serial.begin(9600);
}
void loop()
{
getBuffer(); //Begin!
Serial.print("Wind Direction: ");
Serial.print(WindDirection());
Serial.println(" ");
Serial.print("Average Wind Speed (One Minute): ");
Serial.print(WindSpeedAverage());
Serial.println("m/s ");
Serial.print("Max Wind Speed (Five Minutes): ");
Serial.print(WindSpeedMax());
Serial.println("m/s");
Serial.print("Rain Fall (One Hour): ");
Serial.print(RainfallOneHour());
Serial.println("mm ");
Serial.print("Rain Fall (24 Hour): ");
Serial.print(RainfallOneDay());
Serial.println("mm");
Serial.print("Temperature: ");
Serial.print(Temperature());
Serial.println("C ");
Serial.print("Humidity: ");
Serial.print(Humidity());
Serial.println("% ");
Serial.print("Barometric Pressure: ");
Serial.print(BarPressure());
Serial.println("hPa");
Serial.println("");
Serial.println("");
}

Expected Results

Note: Due to the fact that there is no wind in the test environment, all parameters related to wind speed and wind direction are 0.

Result

FAQ

Q1. About the module assembly: I only found there are only two installation blocks for the different modules on the Converter Board, but there are three modules: Anemometer, Wind vane and Rain bucket to be installed on the Converter Board. How come?

A: There are two ports under the anemometer, you need to connect the anemometer to the wind direction and then connect to the adapter board, as shown in the figure:

Connect

วิธีการชำระเงิน

ชำระเงินค่าสินค้าโดยการโอนเงินเข้าบัญชีธนาคาร KBANK, SCB, BBL,TMB

กรุณาเก็บหลักฐานการโอนเงินของท่านไว้เพื่อแจ้งการชำระเงินด้วยค่ะ

 

ท่านสามารถแจ้งการชำระเงินผ่านระบบอัตโนมัติได้โดย Click Link ข้างล่างค่ะ

https://www.arduitronics.com/informpayment

 

บมจ. ธนาคารกสิกรไทย สาขาเซ็นทรัล แจ้งวัฒนะ ออมทรัพย์
ธนาคารไทยพาณิชย์ จำกัด (มหาชน) สาขาเซ็นทรัล แจ้งวัฒนะ ออมทรัพย์
ธนาคารกรุงเทพ จำกัด (มหาชน) สาขาเซนทรัล พระราม 3 สะสมทรัพย์
ธนาคารทหารไทยธนชาต จำกัด (มหาชน) สาขาเซนทรัล พระราม 3 กระแสรายวัน

เพิ่มเพื่อน

@rfm0967y

ติดต่อสอบถาม

เพิ่มเพื่อน

CATEGORY

Sensors / Modules [1703]

CONTACT US

มือถือ 0887823467 แฟกซ์ 02-0153201

Join เป็นสมาชิกร้านค้า

ร้านArduitronics
ร้านArduitronics
/www.arduitronics.com/
Join เป็นสมาชิกร้าน
2140
สมัครสมาชิกร้านนี้ เพื่อรับสิทธิพิเศษ

STATISTICS

หน้าที่เข้าชม15,419,493 ครั้ง
ผู้ชมทั้งหมด5,922,571 ครั้ง
เปิดร้าน21 พ.ค. 2556
ร้านค้าอัพเดท3 ต.ค. 2568

MEMBER

พูดคุย-สอบถาม