Skip to product information
1 of 3

Blue PCB Electronics

2C5005 Sharp GP2Y0A710K0F Distance Sensor

2C5005 Sharp GP2Y0A710K0F Distance Sensor

Regular price Dhs. 100.00
Regular price Sale price Dhs. 100.00
Sale Sold out
View full details

Description

GP2Y0A21YK0F is a distance-measuring sensor unit composed of an integrated combination of PSD (position-sensitive detector), IRED (infrared-emitting diode), and signal processing circuit. This device outputs the voltage corresponding to the detection distance, so this sensor can also be used as a proximity sensor.

Datasheet

Features

  • The measuring and detecting distance is 10 to 80 cm
  • The maximum allowable Angle : > 40 °
  • The power supply voltage : 4.5 to 5.5 V
  • The average power consumption : 35 mA
  • Peak power consumption : about 200 mA
  • The frequency of updates : 25 Hz/40 ms
  • Analog output noise : < 200 mV
  • Less influence on the color of reflective objects, reflectivity
  • Line-up of distance output/distance judgement type:
  • Distance output type (analog voltage) : GP2Y0A21YK
  • Distance judgement type : GP2Y0D21YK
  • The judgment distance is 24 cm
  • Adjustable within the range of 10 to 80cm (optionally available)
  • External control circuit is unnecessary
  • Low cost

How does an IR distance sensor work?

An IR distance sensor uses a beam of infrared light to reflect off an object to measure its distance. The distance is calculated using the triangulation of the beam of light. The sensor consists of an IR LED and a light detector, or PSD (Position Sensing Device). When the beam of light gets reflected by an object, the reflected beam will reach the light detector, and an ‘optical spot’ will form on the PSD.

How an IR distance sensor works light emitter and detector PSDWhen the position of the object changes, the angle of the reflected beam and the position of the spot on the PSD change as well. See points A and B in the image below.

How an IR distance sensor worksNote the change in the angle of the reflected beam and the position of the ‘optical spot’ on the PSD.

The sensor has a built-in signal processing circuit. This circuit processes the position of the optical spot on the PSD to determine the position (distance) of the reflective object. It outputs an analog signal which depends on the position of the object in front of the sensor.

How to read an IR distance sensor?

IR distance sensors output an analog signal, which changes depending on the distance between the sensor and an object. From the datasheet, you can see that the output voltage of the SHARP GP2Y0A21YK0F ranges from 2.3 V when an object is 10 cm away to 0.4 V when an object is 80 cm away. The graph also shows why the usable detection range starts at 10 cm. Notice that the output voltage of an object that is 2 cm away is the same as the output voltage for an object that is 28 cm away. The usable detection range, therefore, starts after the peak at roughly 10 cm or 2.3 V.

GP2Y0A21YK0F Output Characteristics

The graph also shows the drawback of these sensors, the response is non-linear. In other words, a big change in the output voltage does not always correspond to a big change in range. In order to determine the distance between the sensor and an object, you need to find a function that converts the output voltage into a range value.

This can be done using MS Excel and results in the following formula for distances > 10cm:

Distance (cm) = 29.988 X POW (Volt, -1.173)

This is the function that is used in the SharpIR library, which we will be using later. Note that this function is based on data from the SHARP datasheet only. The output characteristics of the sensor will vary slightly from sensor to sensor so you might get inaccurate readings.

If you want to improve the accuracy of your readings, you can try to measure and plot many data points in Excel and fit a curve through these points. Once you have a new function for your specific sensor, you will need to change the formula used in the SharpIR.cpp file.

GP2Y0A21YK0F Specifications

Operating voltage 4.5 to 5.5 V
Operating current 30 mA
Measuring range 10 to 80 cm
Output type Analog
Dimensions 29.5 x 13 x 13.5 mm
Mounting holes 2x 3.2 mm, 37 mm spacing

 

GP2Y0A21YK0F Sensor Pinout

This module has 3 pins as follows:

  • VCC: Module power supply – 5V
  •  GND: Ground
  • OUT: The output of module that is analog voltage.

You can see pinout of this module in the image below.

GP2Y0A21 Sensor Pinout

Wiring: Connecting GP2Y0A21YK0F IR sensor to Arduino

The wiring diagram below shows you how to connect the GP2Y0A21YK0F IR distance sensor to an Arduino.

SHARP GP2Y0A21YK0 with Arduino Wiring Diagram

These type of distance sensors tend to be a bit noisy, so it is recommended to add a capacitor between Vcc and GND. The datasheet suggests a capacitor of 10 µF or more (I used 220 µF). Connect the positive lead of the capacitor to the Vcc wire connection and the negative lead to the GND wire connection (see picture). Capacitors are often marked with a stripe which indicates the negative lead. The positive lead is often longer then the negative lead.

GP2Y0A21YK0F Connections

GP2Y0A21YK0F Arduino
1 (Yellow) A0
2 (Black) GND
3 (Red) 5V

If your sensor comes with different colored wires, be sure to check the pinout below. The Vo pin is connected to the analog in of the Arduino (A0).SHARP GP2Y0A21YK0F Pinout

Now that you have wired up the sensor it is time to look at some example code.

Installing the SharpIR Arduino library

The SharpIR library written by Guillaume Rico and Thibaut Mauon makes working with SHARP IR sensors a lot easier. It includes the formulas that are needed to convert the measured output voltage to a distance in centimeters. Currently, the library supports the following sensors: GP2Y0A02YK0F, GP2Y0A21YK0F, GP2Y0A710K0F, and GP2YA41SK0F. The latest version of the library can be downloaded here on GitHub or click the button below.

You can install the library by going to Sketch > Include Library > Add .ZIP Library in the Arduino IDE.

Installing an Arduino library ZIP

The author of the library noticed that the readings from the sensor can fluctuate quite a bit. The library solves this problem by taking multiple readings in a row, discarding outliers, and taking the mean to get a more stable distance reading. Currently, the library takes the mean of 25 readings which takes roughly 53 ms.

Example code for SHARP GP2Y0A21YK0F IR distance sensor with Arduino

The example code below can be used with the GP2Y0A21YK0F sensor and displays the measured distance in centimeters in the serial monitor.

// Include the library:
#include "SharpIR.h"

// Define model and input pin:
#define IRPin A0
#define model 1080

// Create variable to store the distance:
int distance_cm;

/* Model :
  GP2Y0A02YK0F --> 20150
  GP2Y0A21YK0F --> 1080
  GP2Y0A710K0F --> 100500
  GP2YA41SK0F --> 430
*/

// Create a new instance of the SharpIR class:
SharpIR mySensor = SharpIR(IRPin, model);

void setup() {
  // Begin serial communication at a baudrate of 9600:
  Serial.begin(9600);
}

void loop() {
  // Get a distance measurement and store it as distance_cm:
  distance_cm = mySensor.distance();

  // Print the measured distance to the serial monitor:
  Serial.print("Mean distance: ");
  Serial.print(distance_cm);
  Serial.println(" cm");

  delay(1000);
}

Note that we have called the sensor ‘mySensor’ in this example. If you want to use multiple IR distance sensors, you can create another sensor object with a different name: SharpIR mySensor2 = SharpIR(IRPin2, model); Note that in that case you also use a different input pin for the second sensor.

You should get the following output in the serial monitor (Ctrl + Shift +M):SHARP GP2Y0A21YK0F serial monitor output