รหัสสินค้า | AS10061 |
หมวดหมู่ | LIDAR / เซ็นเซอร์วัดระยะทาง / ความเร็ว Distance / Speed |
ราคา | 240.00 บาท |
สถานะสินค้า | พร้อมส่ง |
จำนวน | ชิ้น |
คลิ๊กดูตัวอย่างโค๊ด และ Library
หมายเหตุ: สีของ PCB อาจะเป็นได้ทั้ง เขียว หรือ น้ำเงิน รวมถึงข้อความด้านหลังที่เขียนบน PCB ด้วย ทั้งนี้ขึ้นอยู่กับโรงงานผู้ผลิต ทางร้านไม่สามารถกำหนดได้ค่ะ
Specification:
|
Pulse width output |
Serial output |
Operating Voltage |
DC : 3.0-5.5V |
|
Working current |
Less than 8mA |
|
Probe frequency |
40kHz |
|
Farthest range |
600cm |
|
Recent range |
20cm |
|
Distance accuracy |
± 1cm |
|
Resolution |
1mm |
|
Measurement angle |
75 degrees |
|
Enter the trigger signal |
1 , TTL pulse above 10uS 2 , serial send instruction 0X55 |
|
Output echo signal |
Output pulse width signal, or TTL |
|
Wiring |
3-5.5V ( positive power supply ) Trig ( control terminal ) RX Echo (output) TX GND (negative power supply |
|
Product Size |
L42 * W29 * H12 mm |
|
Operating temperature |
-20 ℃ - +70 ℃ |
|
Product color |
PCB is green |
Ultrasonic Module -> Arduino
ตัวอย่างCode
////////////////////////////////////////////////////////////////////////////////
const int pingPin = 13;
int inPin = 12;
void setup() {
Serial.begin(9600);
}
void loop()
{
long duration, cm;
pinMode(pingPin, OUTPUT);
digitalWrite(pingPin, LOW);
delayMicroseconds(2);
digitalWrite(pingPin, HIGH);
delayMicroseconds(5);
digitalWrite(pingPin, LOW);
pinMode(inPin, INPUT);
duration = pulseIn(inPin, HIGH);
cm = microsecondsToCentimeters(duration);
Serial.print(cm);
Serial.print("cm");
Serial.println();
delay(100);
}
long microsecondsToCentimeters(long microseconds)
{
// The speed of sound is 340 m/s or 29 microseconds per centimeter.
// The ping travels out and back, so to find the distance of the
// object we take half of the distance travelled.
return microseconds / 29 / 2;
}
ชำระเงินค่าสินค้าโดยการโอนเงินเข้าบัญชีธนาคาร KBANK, SCB, BBL,TMB
กรุณาเก็บหลักฐานการโอนเงินของท่านไว้เพื่อแจ้งการชำระเงินด้วยค่ะ
ท่านสามารถแจ้งการชำระเงินผ่านระบบอัตโนมัติได้โดย Click Link ข้างล่างค่ะ
https://www.arduitronics.com/informpayment
หน้าที่เข้าชม | 15,375,197 ครั้ง |
ผู้ชมทั้งหมด | 5,878,275 ครั้ง |
เปิดร้าน | 21 พ.ค. 2556 |
ร้านค้าอัพเดท | 5 ก.ย. 2568 |