สถานีวัดอากาศ 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) สต็อกไทยส่งไว
รหัสสินค้า AT02909
หมวดหมู่ วัดสภาพอากาศ
ราคา 6,990.00 บาท
ลงสินค้า 26 เม.ย. 2564
อัพเดทล่าสุด 27 มี.ค. 2567
ขออภัย สินค้าหมด
บัตรประชาชน
บุ๊คแบ๊งค์
คุ้มครองโดย LnwPay
สินค้ารับประกัน 30 วัน

สถานีวัดอากาศ Weather Station Kit with Anemometer/Wind Vane/Rain Bucket ประกอบไปด้วย 6 เซนเซอร์ คือ เซนเซอร์ความเร็วลม เซนเซอร์ทิศทางลม เซนเซอร์ปริมาณน้ำฝน เซนเซอร์ความดันบรรยากาศ เซนเซอร์อุณหภูมิ และเซนเซอร์ความชื้น ใช้ไฟเลี้ยง 5V สามารถใช้ได้ทั้งบอร์ด Arduino Esp8266 และ Esp32

Ever want to build your own weather station? This weather station kit includess anemometer, wind vaneRain and rain bucket. The serial communication method provides good compatibility and makes it easy to use. Together with other components, this anemometer can be widely used in measuring wind /rain in areas such as engineering, railways, docks, power plants, meteorological, cableway, environment study, agriculture, energy monitoring, health study with corresponding signal output. Also, it is compatible with Arduino device.

Version Update 2016/3/28: Upgrade the Temperature and Humidity sensor that the range and accuracy were improved.

Specification

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

Application

  1. Weather station
  2. Weather monitor

Data Interface

image:SEN0186_Data_interface updated.JPG|Weather Station board, updated from Mar.2016 image:SEN0186_Data_interface.png|Weather Station board, older version

There are two data ports on the board

  • Data: 2400bps interval: 1s
  • TXD: 9600bps interval: 1s

Format of Data Output

c000s000g000t086r000p000h53b10020

It outputs 37 bytes per second, including the end CR/LF.

Data Parser:

  • c000: air direction, degree
  • s000: air speed(1 minute), 0.1 miles per hour
  • g000: air speed(5 minutes), 0.1 miles per hour
  • t086: temperature, Fahrenheit
  • r000: rainfall(1 hour), 0.01 inches
  • p000: rainfall(24 hours), 0.01 inches
  • h53: humidity,% (00%= 100)
  • b10020: atmosphere, 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 LED

STU LED: flash with sensor status Link LED: flash with Data output

Connection Diagram

Sensor connection

Sample Code

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


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

SEN0186_result.png

วิธีการสั่งซื้อสินค้า

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

ราคาสินค้าหน้าเว็บรวมภาษีแล้ว

 

ค่าจัดส่งสินค้า ยอดสั่งซื้อต่ำกว่า 1000 บาท ค่าจัดส่งทาง EMS 50 บาท

                      ยอดสั่งซื้อ 1500 บาทขึ้นไป จัดส่งให้ฟรีทาง Kerry 
                   (ไม่รวมสินค้าหมวดหมู่DIY)

 

หลังจากสั่งซื้อและชำระเงินแล้ว จะต้องแจ้งชำระเงินทางหน้าเว็บเท่านั้น  หากไม่มีการแจ้งชำระเงินภายใน 72 ชม. ระบบจะยกเลิกคำสั่งซื้อโดยอัตโนมัติ หากท่านยังต้องการสั่งซื้อสินค้าอยู่ จะต้องทำการสั่งซื้อใหม่อีกครั้ง

 

      รายการที่แจ้งชำระเงินก่อนเวลา 15:00น. จะทำการจัดส่งในวันทำการเดียวกัน  รายการที่แจ้งชำระเงินหลัง 15:00น. จะจัดส่งในวันทำการถัดไป  จะทำการจัดส่งทุกวัน จันทร์-ศุกร์

      ***เฉพาะบริการจัดส่งKerryแจ้งยอดชำระก่อนเวลา10:30น. จะจัดส่งในวันทำการเดียวกัน
Kerryจัดส่งวันจันทร์-ศุกร์เท่านั้น

      *เฉพาะวันเสาร์ รายการที่แจ้งชำระเงินก่อนเวลา 10:00น. จะทำการจัดส่งในวันทำการเดียวกัน  รายการที่แจ้งชำระเงินหลัง 10:00น. จะจัดส่งในวันทำการถัดไป  

 

      หลังจากชำระเงินแล้ว คลิ๊กที่นี่ เพิ่อแจ้งชำระเงินทันที  หากไม่สะดวกในการแนบหลักฐานการโอนเงิน กรุณาแจ้งชื่อธนาคาร และเวลาโอนเงินที่ถูกต้อง หากไม่สะดวกในการเข้าหน้าเว็บจริงๆ สามารถส่งหลักฐานการโอนเงินมาได้ทาง Official Line ID :  @analogread   




 2.ชำระเงินผ่าน QR-CODE ฟรีค่าธรรมเนียม ทุกกรณี

...เลือกธนาคารที่แจ้งชำระเงินเป็น >>>>>>พร้อมเพย์<<<<<< หากมีค่าธรรมเนียมเกิดขึ้นทางเราจะใส่กลับคืนไปในกล่องพร้อมกับสินค้า


 

เลือกช่องทางที่คุณสะดวก เพื่อชำระเงินให้ร้านค้าโดยตรง หากมีข้อสงสัย กรุณา ติดต่อเรา

โอนเงินบัญชีธนาคาร
ธนาคารไทยพาณิชย์ จำกัด (มหาชน) สาขาเซ็นทรัลเฟสติวัล หาดใหญ่ ออมทรัพย์
พร้อมเพย์ สาขา- -
บัญชีออนไลน์
  • ค่าธรรมเนียม 3.9% + 11 THB
  • การชำระผ่าน PayPal คุณไม่จำเป็นต้องแจ้งชำระเงิน เนื่องจากระบบจะจัดการให้คุณทันที ที่คุณชำระเงินเสร็จสมบูรณ์

เลือกช่องทางที่คุณสะดวก เมื่อชำระเงินเรียบร้อย คุณจะได้รับอีเมลยืนยันการชำระเงินทุกครั้ง (LnwPay ไม่มีค่าธรรมเนียมเพิ่มเติม อ่านรายละเอียด)

บัตรเครดิต / บัตรเดบิต
คุณสามารถชำระเงินด้วยบัตรเครดิต (Credit card) หรือ บัตรเดบิต (Debit Card) ได้ทุกธนาคารและสถาบันการเงิน ที่มีสัญลักษณ์ VISA, MASTERCARD, JCB
หมายเหตุ: สำหรับการชำระด้วยบัตรเดบิต (Debit Card) จำเป็นต้องสมัครใช้บริการจากธนาคารก่อนชำระเงิน ดูวิธีสมัคร ธ.กสิกร | ธ.กรุงเทพ | ธ.กรุงไทย
ดำเนินการต่อเมื่อกดปุ่มนี้ ระบบจะพาคุณไปยังเว็บไซต์ LnwPay
แอพพลิเคชั่นธนาคาร
อีกก้าวของความสะดวกสบาย ให้คุณชำระเงินผ่าน แอพพลิเคชั่นธนาคารบนมือถืออย่าง K PLUS ของธนาคารกสิกรไทย เพียงกรอกเบอร์มือถือ ระบบจะส่งการแจ้งเตือนผ่านแอพ และกดชำระเงินได้ทันที
เลือกช่องทางที่ท่านต้องการชำระผ่าน:
K PLUS App
ดำเนินการต่อ เมื่อกดปุ่มนี้ ระบบจะพาคุณไปยังเว็บไซต์ LnwPay
อินเตอร์เน็ตแบงค์กิ้ง
บริการที่จะให้คุณชำระเงินค่าสินค้าได้อย่างง่ายดาย เพียงเข้าสู่ระบบบริการ i-Banking, e-Banking ของธนาคาร โดยคุณไม่จำเป็นต้องใส่รหัสร้านค้าให้วุ่นวาย เพียงเข้าสู่ระบบจากนั้นเลือกบัญชีที่ต้องการชำระ รับ SMS สำหรับ OTP และชำระเงินได้ทันที
เลือกช่องทางที่ท่านต้องการชำระผ่าน:
ธนาคารไทยพาณิชย์
ธนาคารกรุงเทพ
ธนาคารกรุงศรีฯ
ดำเนินการต่อ เมื่อกดปุ่มนี้ ระบบจะพาคุณไปยังเว็บไซต์ LnwPay
เงินสดผ่านเคาน์เตอร์
ชำระเงินผ่านเคาน์เตอร์ ผ่านจุดรับชำระเงินทั่วประเทศ สามารถจ่ายเงินได้ที่ 7-Eleven ทุกสาขา (ผ่าน Counter Service)
เลือกช่องทางที่ท่านต้องการชำระผ่าน:
Counter Service
ดำเนินการต่อ เมื่อกดปุ่มนี้ ระบบจะพาคุณไปยังเว็บไซต์ LnwPay
บัญชีออนไลน์
คุณสามารถชำระเงินผ่านบัญชีออนไลน์ที่คุณใข้บริการ ทั้ง truemoney Wallet และ LINE Pay โดยคุณสามารถเลือกตัดยอดเงินได้ทันที หรือจะชำระผ่านช่องทางต่างๆ ที่ผู้ให้บริการนั้นรองรับก็ได้เช่นกัน
เลือกช่องทางที่ท่านต้องการชำระผ่าน:
TrueMoney
LINE Pay
ดำเนินการต่อ เมื่อกดปุ่มนี้ ระบบจะพาคุณไปยังเว็บไซต์ LnwPay

นโยบายการเปลี่ยนหรือคืนสินค้า

*** สินค้ารับประกัน 30 วัน ***

สถิติร้านค้า

หน้าที่เข้าชม7,125,661 ครั้ง
ผู้ชมทั้งหมด2,822,559 ครั้ง
เปิดร้าน15 ก.ย. 2557
ร้านค้าอัพเดท6 ก.ย. 2568

อุปกรณ์ Arduino

เช็คสถานะสินค้า


ติดตามสินค้า

ระบบสมาชิก

ติดต่อเรา

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