เซ็นเซอร์วัดความเร็วลม อลูมิเนียม Wind Speed Sensor Aluminum shell RS-FSA-N01 RS485/Modbus

฿1,690.00 มีค่าส่งเริ่มต้น 45 บาท ค่าจัดส่งเริ่มต้นโดยประมาณ อาจมีการเปลี่ยนแปลงตามที่อยู่หรือปริมาณที่ท่านเลือก ระบบจะคำนวณค่าจัดที่แท้จริงในหน้าชำระเงิน

มีสินค้าอยู่ 10

รหัสสินค้า: imi408013 หมวดหมู่: , , ป้ายกำกับ:

รายละเอียดสินค้า

คำอธิบาย

RS-FSA-N01 RS485 Modbus เซ็นเซอร์วัดความเร็วลม Wind Speed Sensor Aluminum shell

RS-FSA-N01 RS485 Modbus เซ็นเซอร์วัดความเร็วลม Wind Speed Sensor Aluminum shell

RS-FSA-N01 เครื่องส่งสัญญาณความเร็วลม ขนาดกะทัดรัด น้ำหนักเบา พกพาและประกอบง่าย การออกแบบถ้วยสามารถรับข้อมูลเกี่ยวกับความเร็วลมได้อย่างมีประสิทธิภาพ ตัวเรือนทำจากอะลูมิเนียมอัลลอยคุณภาพสูง เคลือบด้วยกระบวนการสเปรย์ภายนอก ทนต่อการกัดกร่อนและการเสื่อมสภาพได้ดี ช่วยให้ใช้งานเครื่องส่งสัญญาณได้ยาวนานโดยไม่เกิดสนิม มาพร้อมระบบลูกปืนภายในที่เรียบลื่นเพื่อความแม่นยำในการเก็บข้อมูล ใช้งานได้หลากหลาย เช่น ในโรงเรือนป้องกันพืช การป้องกันสิ่งแวดล้อม สถานีอากาศ เรือ ท่าเรือ การเลี้ยงสัตว์ และการวัดความเร็วลมในสภาพแวดล้อมอื่น

RS-FSA-N01 Specifications:

DC power supply (default)

10~30V DC

Maximum power consumption

0.2W(12V power supply)

Transmitter circuit operating temperature

-40°C~+60°C,0%RH~80%RH

communication interface

485 communication (ModBus) protocol
Data bit length: 8 bits
Parity check method: none
Stop bit length: 1 bit
Default ModBus communication address: 1
Baud rate: 2400, 4800 (default), 9600, 19200, 38400, 57600, 115200

Parameter setting

Configure with the provided configuration software through 485 interface

resolution ratio

0.1m/s

measuring range

0~60m/s

Dynamic response time

2s

precision

± (0.2+0.03V) m/s V represents wind speed

 

 

Equipment size / ขนาดอุปกรณ์

ข้อมูลเพิ่มเติม

ข้อมูลเพิ่มเติม

น้ำหนัก 600 กรัม
ขนาด 30 × 30 × 30 เซนติเมตร
Output Protocal

Communication Interface

ประเภทสินค้า

เซ็นเซอร์

ผู้ผลิต

ประเทศจีน

ผู้นำเข้า

อิมิคอน ซิสเท็ม

ผู้จัดจำหน่าย

ร้านอิมิคอนซิสเท็ม 14/44 ถ.ลำพูน-ป่าซาง ต.ในเมือง อ.เมือง จ.ลำพูน

วิธีใช้

ใช้ในการวัดค่า (ระบุที่ชื่อสินค้า)

ข้อควรระวัง

โปรดตรวจสอบความถูกต้องในการต่อใช้งาน

คู่มือการใช้งาน

คู่มือการใช้งาน
Wind speed 485 transmitter instructions

 

สินค้าภายในกล่อง

ตัวอย่างการโปรแกรม

ESP32 devkit v1 connect withWind Speed Sensor RS-FSA-N01 throught UART port via Modbus-RTU protocol using RS485 auto direction module

คัดลอกโค้ดนี้วางบน Sketch Board , Arduino IDE

// Pin การเชื่อมต่อ Serial Micromation Dev Board
#define RXD2 16
#define TXD2 17

// Pin การเชื่อมต่อ Serial i-Mation Pico Dev Board
//#define RXD2 34
//#define TXD2 33

byte ByteArray[250];
int ByteData[20];


void setup() {
Serial.begin(9600);
Serial2.begin(4800, SERIAL_8N1, RXD2, TXD2);
}


void loop() {
delay(500);
byte msgfs[] = {0x01,0x03,0x00,0x00,0x00,0x01,0x84,0x0A};
int i;
int len=8;
Serial.println();
Serial.println();
Serial.println("RS-FSA-N01 => SEND DATA");
for(i = 0 ; i < len ; i++){
Serial2.write(msgfs[i]);
Serial.print("[");
Serial.print(i);
Serial.print("]");
Serial.print("=>");
Serial.print(String(msgfs[i], HEX));
Serial.print(" ");
}
len = 0;
Serial.println();
Serial.println();


int a = 0;
while(Serial2.available())
{
ByteArray[a] = Serial2.read();
a++;
}
int b = 0;
String registros;
Serial.println("DATA RECEPTION => RS-FS-N01");
for(b = 0 ; b < a ; b++){
Serial.print("[");
Serial.print(b);
Serial.print("]");
Serial.print("=>");
registros =String(ByteArray[b], HEX);
Serial.print(registros);
Serial.print(" ");
}
Serial.println();
Serial.println();


Serial.println("REGISTERS HEX");


ByteData[0] = ByteArray[3] * 256 + ByteArray[4];
Serial.println(ByteData[0],DEC);
Serial.println();
Serial.println();


float winds;
winds = ByteData[0] * 0.1;



Serial.println("RS-FSA-N01 => Result");
Serial.print("Wind Speed = ");
Serial.print(winds);
Serial.print(" m/s");
delay(200);


}

 

เรียกดูตัวอย่างเพิ่มเติมได้ที่ลิ้งค์ด้านล่างนี้

ตัวอย่างต่อใช้งาน RS-FS-N01 เซ็นเซอร์วัดความเร็วลม Wind Speed Sensor กับ Arduino และ ESP32 ด้วยโมดูล RS-485

ตัวอย่างโปรเจค

⚠️ รุ่นที่ใหม่กว่า

คุณอาจจะชื่นชอบ…

เซ็นเซอร์วัดความเร็วลม อลูมิเนียม Wind Speed Sensor Aluminum shell RS-FSA-N01 RS485/Modbus

฿1,690.00 มีค่าส่งเริ่มต้น 45 บาท ค่าจัดส่งเริ่มต้นโดยประมาณ อาจมีการเปลี่ยนแปลงตามที่อยู่หรือปริมาณที่ท่านเลือก ระบบจะคำนวณค่าจัดที่แท้จริงในหน้าชำระเงิน

มีสินค้าอยู่ 10

🌺🌺 แจ้งลูกค้า ร้านหยุดเทศกาลปีใหม่ ตั้งแต่วันที่ 28 ธันวาคม 2567 - 1 มกราคม 2568 กลับมาพบกันใหม่ปีหน้าพร้อมความสดใสและบริการที่ดีกว่าเดิม ขอให้ลูกค้าทุกท่านมีความสุขตลอดปีใหม่นี้ 🌺🌺