Tlc5615 10 Bit Da Module Dac Sine Wave Generator
Rs. 272.00 Rs. 311.00
- Product Code: SEN-DAC
- SKU -
- 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
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