จำนวนชิ้น | ส่วนลดต่อชิ้น | ราคาสุทธิต่อชิ้น |
{{(typeof focus_pdata.price_list[idx+1] == 'undefined')?('≥ '+price_row.min_quantity):((price_row.min_quantity < (focus_pdata.price_list[idx+1].min_quantity - 1))?(price_row.min_quantity+' - '+(focus_pdata.price_list[idx+1].min_quantity - 1)):price_row.min_quantity)}} | {{number_format(((focus_pdata.price_old === null)?focus_pdata.price:focus_pdata.price_old) - price_row.price,2)}} บาท | {{number_format(price_row.price,2)}} บาท |
คงเหลือ | ชิ้น |
จำนวน (ชิ้น) |
- +
|
ซื้อเลย หยิบลงตะกร้า ซื้อเลย หยิบลงตะกร้า คุณมีสินค้าชิ้นนี้ในตะกร้า 0 ชิ้น
ช่องทางสั่งซื้ออื่น ๆ
|
|
|
|
คุยกับร้านค้า | |
{{ size_chart_name }} |
|
หมวดหมู่ | วัดกระแส Current sensor |
สภาพ | สินค้าใหม่ |
เพิ่มเติม | |
สภาพ | สินค้ามือสอง |
เกรด | |
สถานะสินค้า | |
ระยะเวลาจัดเตรียมสินค้า | |
เข้าร่วมโปรโมชั่น | |
ข้อมูล |
น้ำหนัก
บาร์โค้ด
ลงสินค้า
อัพเดทล่าสุด
|
รายละเอียดสินค้า |
รายละเอียดสินค้า
This current sensor board is based on the Allegro ACS712ELCTR-30A bi-directional hall-effect current sensor chip that detects positive and negative flowing currents in the range of minus 30 Amps to positive 30 Amps. The board operates at 5V DC and the current flow through the sensor is converted to an output voltage starting at 1/2Vcc (or 2.5V) for no current flow and moves up 66mV per amp for positive current or down -66mV per amp for negative current.
For example:
The output voltage at +2 amps would be (2.5V + (0.066 * 2)) = 2.632 V
The output voltage at -5 amps would be (2.5V - (0.066 * 5)) = 2.170 V
SPECIFICATIONS:
ตัวอย่าง Code // ACS712 Demo Sketch // // Select sensitivity for appropriate ACS712 version: //int Sens = 185; // Sensitivity in mV/A for the 5A version //int Sens = 100; // Sensitivity in mV/A for the 20A version int Sens = 66; // Sensitivity in mV/A for the 30A version const int analogIn = A0; // Analog input pin int OffsetVoltage = 2500; // 0 Current offset Voltage in mV @ 0 amps int RawValue= 0; // Init result variables double Voltage = 0; // double Amps = 0; // void setup(){ Serial.begin(9600); // Start serial monitor } void loop(){ RawValue = analogRead(analogIn); // Read voltage from ASC712 Voltage = (RawValue / 1023.0) * 5000; // Convert to mV Amps = ((Voltage - OffsetVoltage) / Sens); // Convert to amps Serial.print("A/D Read Value = " ); // A/D read value Serial.print(RawValue); // Serial.print("\t mV = "); // ACS712 Output voltage Serial.print(Voltage,3); // Serial.print("\t Amps = "); // Current measured Serial.println(Amps,3); // delay(2500); // Wait a bit then do it again } ![]() ![]() |
เงื่อนไขอื่นๆ |
|
Tags |
หน้าที่เข้าชม | 2,072,905 ครั้ง |
ผู้ชมทั้งหมด | 1,333,631 ครั้ง |
ร้านค้าอัพเดท | 7 ก.ย. 2568 |