Wish List 0

Tlc5615 10 Bit Da Module Dac Sine Wave Generator

Rs. 272.00 Rs. 311.00

  • Product Code: SEN-DAC
  • SKU - SE-2873
  • Availability: In Stock
  • Price in reward points: 2
  • For Bulk Order 9962060070
    Quick support on WhatsApp (+919962060070) only between morning 11am-4pm, no call will be answered
HY-SRF05

the module performance is stable, measure the distance accurately:
-Can and SRF05, SRF02 ultrasonic distance measuring module and other comparable. Module precision, blind spots  (2cm) super close, stable ranging success of this product to market under the strong!

Main technical parameters:
-Voltage               :DC5V
-Static current        :less than 2mA
-level output          :high-5V
-level output          :the end of 0V
-Sensor angle          :not more than 15 degrees
-Detection distance    :2cm-450cm
-High precision        :up to 0.3cm
-Connection            :VCC, trig (control side), echo (receiving end), GND

Usage:
10US a control population of more than a high-fat, you can wait to receive high output port. A timer can be opened with the output timing, when the port goes low when the timer value can be read this when the time for this distance, only calculate the distance. This constant cycle of measurement, you can reach the value of the mobile measurement ~ ~

Module works:
-The IO trigger location, the high signal to at least 10us;
-the module automatically sends eight 40khz square wave, automatically detects whether a signal return;
-a signal back, through the IO of a high output, high duration is Ultrasonic time from launch to return.
-Test distance = (time * High speed of sound (340M / S)) / 2;

 
SPECIFICATIONS
Voltage               DC5V
Static current        less than 2mA
level output          high-5V
level output          the end of 0V
Sensor angle          not more than 15 degrees
Detection distance    2cm-450cm
High precision        up to 0.3cm
OVERVIEW
Trigger Pin Format         10 uS digital pulse
Sound Frequency            40 kHz
Echo Pin Output            0-Vcc
Echo Pin Format            output is DIGITAL and directly proportional with range. See our conversion formula above.
Measurement Range          2cm to 4.5m
Measurement Resolution     0.3cm
Measurement Angle          up to 15 deg
Measurement Rate           40 Hz
Supply Voltage             4.5V to 5.5V
Supply Current             10 to 40mA

PACKAGE INCLUDES:

1 PCS x "Ultrasonic Distance Measurement Sensor Module Hy Srf05



//SOURCE CODE TAEKN FROM BELOW LINK

//https://create.arduino.cc/projecthub/Nicholas_N/distance-measurement-with-an-ultrasonic-sensor-hy-srf05-64554e

const unsigned int TRIG_PIN=13;

const unsigned int ECHO_PIN=12;

const unsigned int BAUD_RATE=9600;


void setup() {

  pinMode(TRIG_PIN, OUTPUT);

  pinMode(ECHO_PIN, INPUT);

  Serial.begin(BAUD_RATE);

}


void loop() {

  digitalWrite(TRIG_PIN, LOW);

  delayMicroseconds(2);

  digitalWrite(TRIG_PIN, HIGH);

  delayMicroseconds(10);

  digitalWrite(TRIG_PIN, LOW);

  


 const unsigned long duration= pulseIn(ECHO_PIN, HIGH);

 int distance= duration/29/2;

 if(duration==0){

   Serial.println("Warning: no pulse from sensor");

   } 

  else{

      Serial.print("distance to nearest object:");

      Serial.println(distance);

      Serial.println(" cm");

  }

 delay(100);

 }

15 DAYS 

Write a review

Please login or register to review