ไฮไลท์
HY-SRF05 Ultrasonic module
ข้อมูล
น้ำหนัก
บาร์โค้ด
ลงสินค้า
อัพเดทล่าสุด
รายละเอียดสินค้า
Description

  • Detecting range: 3cm-4M
  • Best in 30 degree angle
  • Electronic brick compatible interface
  • 5VDC power supply
  • Breadboard friendly
  • Dual transduce
  • library ready
Specification

  • Working Voltage: 5V (DC)
  • Static current: Less than 2mA.
  • Output signal: Electric frequency signal, high level 5V, low level 0V
  • Sensor angle: Not more than 15 degrees.
  • Detection distance: 2cm-450cm.
  • High precision: Up to 0.3cm
  • Working tempter:-20C___+60C
  • Weight: 10
  • Size: 45x 21mm (L x W)
  1. /*
  2. * Ultrasonic Sensor HC-SR04
  3. *
  4. * by Dejan Nedelkovski,
  5. * www.HowToMechatronics.com
  6. *
  7. */
  8. // defines pins numbers
  9. const int trigPin = 9;
  10. const int echoPin = 10;
  11. // defines variables
  12. long duration;
  13. int distance;
  14. void setup() {
  15. pinMode(trigPin, OUTPUT); // Sets the trigPin as an Output
  16. pinMode(echoPin, INPUT); // Sets the echoPin as an Input
  17. Serial.begin(9600); // Starts the serial communication
  18. }
  19. void loop() {
  20. // Clears the trigPin
  21. digitalWrite(trigPin, LOW);
  22. delayMicroseconds(2);
  23. // Sets the trigPin on HIGH state for 10 micro seconds
  24. digitalWrite(trigPin, HIGH);
  25. delayMicroseconds(10);
  26. digitalWrite(trigPin, LOW);
  27. // Reads the echoPin, returns the sound wave travel time in microseconds
  28. duration = pulseIn(echoPin, HIGH);
  29. // Calculating the distance
  30. distance= duration*0.034/2;
  31. // Prints the distance on the Serial Monitor
  32. Serial.print("Distance: ");
  33. Serial.println(distance);
  34. }

HY-SRF05 Ultrasonic module
HY-SRF05 Ultrasonic module
เงื่อนไขอื่นๆ
Tags

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

บมจ. ธนาคารกรุงไทย สาขาด่านขุนทด ออมทรัพย์
รายการสั่งซื้อของฉัน
เข้าสู่ระบบด้วย
เข้าสู่ระบบ
สมัครสมาชิก

ยังไม่มีบัญชีเทพ สร้างบัญชีใหม่ ไม่มีค่าใช้จ่าย
สมัครสมาชิก (ฟรี)
รายการสั่งซื้อของฉัน
ข้อมูลร้านค้านี้
ร้านIotShop
IotShop
จำหน่าย Arduino Micro Controller, Shield, Module, Sensor, และอุปกรณ์อิเล็กทรอนิกส์ต่างๆ ราคาถูกที่สุด มีสินค้าพร้อมส่งและสุ่มทดสอบให้ลูกค้าความมั่นใจว่าสินค้าใช้งานได้แน่นอน จัดส่งสินค้าทุกวัน สต๊อกในไทย ตัดรอบ 14.00 น. ***ลูกค้าที่ต้องการใบเสร็จ โปรดแจ้งรายละเอียดมาทางช่องแชท รายละเอียดที่ต้องแจ้ง - ชื่อหน่วยงาน เช่น มหาวิทยาลัย โรงเรียน บริษัท ห้างร้าน - ที่อยู่หน่วยงาน - เลขที่ประจำตัวผู้เสียภาษีของหน่วยงาน - สาขาที่ / หรือสำนักงานใหญ่
เบอร์โทร : 0902624118
อีเมล : nattaphumart@gmail.com
ส่งข้อความติดต่อร้าน
เกี่ยวกับร้านค้านี้
สินค้าที่ดูล่าสุด
ดูสินค้าทั้งหมดในร้าน
สินค้าที่ดูล่าสุด
บันทึกเป็นร้านโปรด
Join เป็นสมาชิกร้าน
แชร์หน้านี้
แชร์หน้านี้

TOP เลื่อนขึ้นบนสุด
พูดคุย-สอบถาม