Ultrasonic Range Detector Analog-Output Distance Sensor US-016 (2cm - 300cm)

  • RM17.00

  • Product Code: US-016
  • Availability: In Stock

US-016 is the only one ultrasonic with analog output of ranging module, analog voltage output proportional to the distance value,and can be easily connected to other systems, stable and reliable.
 

Specifications
  • Operating Voltage: DC 5V
  • Working Current: 3.8mA
  • Working temperature: -20 ~ + 70 °C
  • Induction angle: less than 15 degrees
  • Detection distance: 2cm - 300cm
  • Detection accuracy: 0.3cm + 1%
  • Output: analog voltage (0 ~ Vcc)
  • Resolution: 1mm
  • Size: 45mm * 20mm * 1.2mm

 

 

US-016 direct measure the distance into an analog voltage output, the output voltage is proportional to the measured distance.
When the measure distance below 1m , the analogRead output value is cm.
When the measure distance below 3m , the analogRead output value x3 is cm.
 
 
Arduino UNO US-016
A0 Out
Blank  - 3m
GND - 1m
Range
5V VCC
GND

GND

 

1-meter range (return in low-voltage)

unsigned int ADCValue;
void setup(){
    Serial.begin(9600);
}
 
void loop(){
 
    ADCValue = analogRead(0);
    Serial.print("Present Length is: ");
    Serial.print(ADCValue, DEC);
    Serial.println("mm");
    delay(1000); //delay 1S
}
 

 

3-meter range (return in high-voltage)

unsigned int ADCValue;
void setup(){
    Serial.begin(9600);
}
 
void loop(){
 
    ADCValue = analogRead(0);
    ADCValue *= 3;
    Serial.print("Present Length is: ");
    Serial.print(ADCValue, DEC);
    Serial.println("mm");
    delay(1000); //delay 1S
}

 

 

 

Write a review

Note: HTML is not translated!
    Bad           Good

 

Related Products

Tags: Ultrasonic