Infrared Distance Sensor

From LinkSprite Playgound
Jump to: navigation, search

Introduction

The Sharp distance sensors are a popular choice for many projects that require accurate distance measurements. This IR sensor is more economical than sonar rangefinders, yet it provides much better performance than other IR alternatives. Interfacing to most microcontrollers is straightforward: the single analog output can be connected to an analog-to-digital converter for taking distance measurements, or the output can be connected to a comparator for threshold detection. The detection range of this version is approximately 10 cm to 80 cm (4" to 32"); a plot of distance versus output voltage is shown below.

The GP2Y0A21 uses a 3-pin JST connector that works with our 3-pin JST cables for Sharp distance sensors (not included) as shown in the upper picture on the right. It is also simple to solder three wires to the sensor where the connector pins are mounted (see the lower picture to the right). When looking at the back, the three connections from left to right are power, ground, and the output signal.


Linker IR distance1.jpg

Linker IR distance2.jpg



Package List

Features

  • operating voltage: 4.5 V to 5.5 V
  • average current consumption: 30 mA (typical)
  • distance measuring range: 10 cm to 80 cm (4" to 32")
  • output type: analog voltage
  • output voltage differential over distance range: 1.9 V (typical)
  • response time: 38 ± 10 ms
  • package size: 29.5×13.0×13.5 mm (1.16×0.5×0.53")
  • weight: 3.5 g (0.12 oz)

Mechanic Dimensions

Unit:mm

IR distance sensor dimensions.jpg

Application Ideas

test <syntaxhighlight lang="c"> int i; int val; int redpin=0; void setup() {

   pinMode(redpin,OUTPUT);
   Serial.begin(9600);

} void loop() {

   i=analogRead(redpin);
   val=(6762/(i-9))-4;
   Serial.print("Distance is:");
   Serial.print(val);
   Serial.println("cm");
   delay(1000);

} </syntaxhighlight>

Distance link.jpg

Serial com.jpg

Resources