หากต้องการใบเสนอราคา / ใบแจ้งหนี้ 
ติดต่อได้ทาง LINE Official: @mikroelec
  • จำนวนและราคาสินค้าที่มีอยู่จริงจะตรงกับในเว็บ
  • ถ้ากดใส่ตระกร้าได้แสดงว่ามีสินค้าพร้อมส่ง หากจำนวนไม่พอจะมีข้อความแจ้งจำนวนคงเหลือให้ทราบ
  • การรับ/ส่งสินค้ามี 3 รูปแบบคือ ส่งพัสดุ / มารับเองที่ร้าน / บริการแอปขนส่งเช่น Grab, LALAMOVE, ฺBolt, อื่นๆ



RCWL-9610 Ultrasonic Sensor 2022 Version 3 to 5v Ultrasonic Distance Module replace for HC-SR04 with support for I2C, UART and 1-Wire

RCWL-9610 Ultrasonic Sensor 2022 Version 3 to 5v Ultrasonic Distance Module replace for HC-SR04 with support for I2C, UART and 1-Wire
RCWL-9610 Ultrasonic Sensor 2022 Version 3 to 5v Ultrasonic Distance Module replace for HC-SR04 with support for I2C, UART and 1-WireRCWL-9610 Ultrasonic Sensor 2022 Version 3 to 5v Ultrasonic Distance Module replace for HC-SR04 with support for I2C, UART and 1-WireRCWL-9610 Ultrasonic Sensor 2022 Version 3 to 5v Ultrasonic Distance Module replace for HC-SR04 with support for I2C, UART and 1-WireRCWL-9610 Ultrasonic Sensor 2022 Version 3 to 5v Ultrasonic Distance Module replace for HC-SR04 with support for I2C, UART and 1-Wire
รหัสสินค้า SKU-02182
หมวดหมู่ เซนเซอร์วัดระยะทาง
ราคา 45.00 บาท
สถานะสินค้า พร้อมส่ง
ลงสินค้า 10 ธ.ค. 2565
อัพเดทล่าสุด 29 ธ.ค. 2567
จำนวน
ชิ้น
หยิบลงตะกร้า
บัตรประชาชน
บุ๊คแบ๊งค์
คุ้มครองโดย LnwPay
  • จำนวนและราคาสินค้าที่มีอยู่จริงจะตรงกับในเว็บ
  • ถ้ากดใส่ตระกร้าได้แสดงว่ามีสินค้าพร้อมส่ง หากจำนวนไม่พอจะมีข้อความแจ้งจำนวนคงเหลือให้ทราบ
  • การรับ/ส่งสินค้ามี 3 รูปแบบคือ ส่งพัสดุ / มารับเองที่ร้าน / บริการแอปขนส่งเช่น Grab, LALAMOVE, ฺBolt, อื่นๆ
สินค้าที่เกี่ยวข้อง



Description

Ultrasonic distance sensor HC-SR04+ version 2022. An improved version of the well-known sensor with an extended power range on the RCWL-9610 controller.

The use of the new controller complements the sensor interfaces: I2C, UART and 1-Wire. To change the interface, you need to install jumpers on the contacts on the back of the board.

No soldered jumpers, works exactly the same as the old version of the HC-SR04 module

Specification:

  • supply voltage: from 3.3 to 5 V;
  • current consumption in silence mode: 2 mA;
  • current consumption in measurement mode: 15 mA;
  • effective angle: 15°;
  • working angle: 30°;
  • measured distance: from 2 to 450 cm.


Tip: โมดูลนี้สามารถใช้ร่วมกับ 
รหัสสินค้า SKU-00506 โมดูลมิเตอร์วัดระยะโดยใช้ร่วมกับ HC-SR04 ได้

โมดูลมิเตอร์วัดระยะโดยใช้ร่วมกับ HC-SR04 Ultrasonic Distance Measurement Control Board Test Board Rangefinder Digital Display Serial Outputโมดูลมิเตอร์วัดระยะโดยใช้ร่วมกับ HC-SR04 Ultrasonic Distance Measurement Control Board Test Board Rangefinder Digital Display Serial Output


Distance =  [high-level time × velocity of sound (340M ⁄ s)] ⁄ 2

Distance test To prove that both newer and older version of HC-SR04P sensors works very similarly and perfectly fine, test using Arduino


// ตัวอย่างโคด โหมด GPIO (default) – the standard HC-SR04 mode

/**
  HC-SR04 (2022 Version RCWL-9610 Chip)
 ==========================================  
 GPIO Control Demonstration
 ------------------------------------------
 This Arduino sketch demonstrates using the (default) GPIO
 mode of the HC-SR04 2022 Version to read a distance in
 centimeters.
 The default configuration of the board is to use GPIO
 but if you have previously used one of the other modes
 ensure that the M1 and M2 jumper are both open
 (no solder blob).
 -VCC               = 3.3V/5.5V
 -Trig_RX_SCL_I/O   = A5
 -Echo_TX_SDA       = A4
 -GND               = GND
*/

float get_distance_cm()
{
// Connect the arduino to the SR04 pins as defined here
//  (you can change A4 and A5 to any other unused pins for GPIO mode)
  const int SR04_Trig_RX_SCL = A5;
  const int SR04_Echo_TX_SDA = A4;
// Ensure the pins are in the correct mode
  pinMode(SR04_Echo_TX_SDA,INPUT);
  pinMode(SR04_Trig_RX_SCL,OUTPUT);
// We need to delay by at least 30ms between readings
//  so we don't get a false reading
  static unsigned long lastread = 0;
  if(millis() - lastread < 30)
  {
    delay(millis()-lastread);
  }
  lastread = millis();
// Send a trigger pulse
  digitalWrite(SR04_Trig_RX_SCL,HIGH);
  delayMicroseconds(500);
  digitalWrite(SR04_Trig_RX_SCL,LOW);
// Read the distance pulse,
// the number of microseconds for a return trip at the speed of sound
  unsigned long microseconds  = pulseIn(SR04_Echo_TX_SDA,HIGH);
// Sound travels in air at about 343 m/s at 20degrees C
//  that is 343 / 1000000 m per microsecond
//  that is ( 343 / 1000000  * 100) cm per microsecond
// Note thoat we need to "cast" to a float here to calculate correctly
  float distance  = microseconds * ( (float) 343 / 1000000 * 100);
  distance  = distance/2; // divide by 2 since that was a return trip
  return distance;
}
void setup()
{
  Serial.begin(9600);
}
void loop()
{
 float distance = get_distance_cm();
 Serial.print("Distance: ");
 Serial.print(distance);          
 Serial.println("cm");            
 delay(150);
}
//ตัวอย่างโคด โหมด I2C (IIC)

/**
   HC-SR04 (2022 Version RCWL-9610 Chip)
   ==========================================
      IIC (I2C/TWI "Wire") Control Demonstration
   ------------------------------------------
   This Arduino sketch demonstrates using the IIC
   mode of the HC-SR04 2022 Version to read a
   distance in centimeters.
      To configure the module foro IIC the solder
   jumper "M2" (back of board bottom right)
   must be closed by putting a blob of solder
   on it (M1 must be open, no blob).
   
   -VCC               = 3.3V/5.5V
   -Trig_RX_SCL_I/O   = A5
   -Echo_TX_SDA       = A4
   -GND               = GND
*/
#include <Wire.h>
float get_distance_cm()
{
  // Setup the connection
  static byte WireWasBegun = false;
  if(WireWasBegun == false)
  {
    Wire.begin();
    WireWasBegun = true;
  }
  // We need to delay by at least 30ms between readings
  //  so we don't get a false reading
  static unsigned long lastread = 0;
  if(millis() - lastread < 30)
  {
    delay(millis()-lastread);  
  }
  lastread = millis();  
  // Send the trigger command 0x01 to the I2C address 0x57
  //  (the address can not be changed)
  Wire.beginTransmission(0x57);
  Wire.write(0x01);
  Wire.endTransmission();
 
  // Wait 150mS for the ping to complete
  delay(150);
 
  // Read 3 bytes from 0x57
  byte response[3];
  Wire.requestFrom(0x57,3);
  for(byte i = 0; Wire.available() && (i <= 2); i++)
  {
    response[i] = Wire.read();
  }  
  // Those three bytes get assembled like this to get the
  //  distance in micrometers
  float micrometers = ((response[0]*65536UL)+(response[1]*256UL)+response[2]);  
  // And now we can return that in centimeters
  //  um / 1000000 = m
  //  m * 100      = cm
  return micrometers / 1000000 * 100;
}
 
void setup()
{
  Serial.begin(9600);
}
void loop()
{
 float distance = get_distance_cm();
 Serial.print("Distance: ");
 Serial.print(distance);                    
 Serial.println("cm");              
 delay(150);
}

//ตัวอย่างโคด โหมด UART 
/**
   HC-SR04 (2022 Version RCWL-9610 Chip)
   ==========================================  
   UART Control Demonstration
   ------------------------------------------  
   This Arduino sketch demonstrates using the UARTO
   mode of the HC-SR04 2022 Version to read a distance in
   centimeters.
   To configure the module for UART the solder
   jumper "M1" (back of board top right)
   must be closed by putting a blob of solder
   on it (M2 must be open, no blob).
   
   -VCC               = 3.3V/5.5V
   -Trig_RX_SCL_I/O   = A5
   -Echo_TX_SDA       = A4
   -GND               = GND
*/
#include "SoftwareSerial.h"
float get_distance_cm()
{
  // Connect the arduino to the SR04 pins as defined here
  //  (you can change A4 and A5 to any othoer uonused pins for UART mode)
  const int SR04_Trig_RX_SCL = A5;
  const int SR04_Echo_TX_SDA = A4;
 
  // Create our UART connection to the device using SoftwareSerial
  static SoftwareSerial *SR04;
  if(!SR04)
  {
    SR04 = new SoftwareSerial(SR04_Echo_TX_SDA, SR04_Trig_RX_SCL);
    SR04->begin(9600);
  }  
  // We need to delay by at least 30ms between readings
  //  so we don't get a false reading
  static unsigned long lastread = 0;
  if(millis() - lastread < 30)
  {
    delay(millis()-lastread);  
  }
  lastread = millis();  
  // Send the trigger command 0XA0
  SR04->flush();
  SR04->write(0xA0);
   
  // Wait 150mS for the ping to complete
  delay(150);
 
  // Read 3 bytes
  byte response[3];
  for(byte i = 0; SR04->available() && i <= 2; i++)
  {
    response[i] = SR04->read();
  }  
  // Those three bytes get assembled like this to get the
  //  distance in micrometers
  float micrometers = ((response[0]*65536UL)+(response[1]*256UL)+response[2]);
 
  // And now we can return that in centimeters
  //  um / 1000000 = m
  //  m * 100      = cm
  return micrometers / 1000000 * 100;
}
void setup()
{
  Serial.begin(9600);
}
void loop()
{
 float distance = get_distance_cm();
 Serial.print("Distance: ");
 Serial.print(distance);                    
 Serial.println("cm");              
 delay(150);
}

 






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

บมจ. ธนาคารกสิกรไทย สาขาโรบินสัน ศรีสมาน ออมทรัพย์
พร้อมเพย์ สาขา- mobile
Scan this!
ไมโครอิเล็กทรอนิกส์
098-xxxxxx-9
Accept All Banks | รับเงินได้จากทุกธนาคาร

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

หากสินค้าชำรุดหรือใช้งานไม่ได้ สามารถขอเปลี่ยนสินค้าได้ภายใน 7 วัน

หมายเหตุ
ต้องไม่เสียหายอันเกิดจากใช้งานผิดพลาด ใช้ผิดวิธี ต่อไฟผิดขั้ว จ่ายไฟเกินกำหนด หรืออื่นๆที่ตรวจสอบแล้วไม่ได้เกิดจากความผิดพลาดจากการผลิตสินค้า


ค้นหาเลขพัสดุ/Track

  • ค้นหา
*ใส่ เบอร์มือถือ หรือ email ที่ใช้ในการสั่งซื้อ

Categories

เซนเซอร์(Senser)/ โมดูล(Module) [503]
อุปกรณ์ / อะไหล่อิเล็กทรอนิกส์ (Electronic component) [495]

Statistic

หน้าที่เข้าชม563,672 ครั้ง
ผู้ชมทั้งหมด321,315 ครั้ง
ร้านค้าอัพเดท19 ต.ค. 2568

Member

รายการสั่งซื้อของฉัน
เข้าสู่ระบบด้วย
เข้าสู่ระบบ
สมัครสมาชิก

ยังไม่มีบัญชีเทพ สร้างบัญชีใหม่ ไม่มีค่าใช้จ่าย
สมัครสมาชิก (ฟรี)
รายการสั่งซื้อของฉัน
ข้อมูลร้านค้านี้
ร้านMikroElectronic
MikroElectronic
จำหน่ายอุปกรณ์อิเล็กทรอนิกส์ โมดูล เครื่องมือ และอุปกรณ์ต่างๆ arduino อาดูโน อะไหล่เครื่องใช้ไฟฟ้า อะไหล่อิเล็กทรอนิกส์ รับออกแบบวงจร เขียนโปรแกรมด้วยอาดูโน รับทำโครงงาน นักเรียนนักศึกษา ให้คำปรึกษาแก้ปัญหาโครงงาน ออกแบบและสร้างงานต้นแบบ ร้านตั้งอยู่ ซอยร่วมสุข ปทุมธานี สถานที่ใกล้เคียง ดอนเมือง สรงประภา ศรีสมาน นนทบุรี แจ้งวัฒนะ
เบอร์โทร : 0984829329
อีเมล : mikroelec@gmail.com
ส่งข้อความติดต่อร้าน
เกี่ยวกับร้านค้านี้
สินค้าที่ดูล่าสุด
ดูสินค้าทั้งหมดในร้าน
สินค้าที่ดูล่าสุด
บันทึกเป็นร้านโปรด
Join เป็นสมาชิกร้าน
แชร์หน้านี้
แชร์หน้านี้

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