Skip to content

Sharp_GP2Y0A710K_Distance_Sensor_(100 550cm)_(SKU_sen0085)

Angelo edited this page Sep 22, 2016 · 4 revisions

Introduction

The GP2Y0A710K infrared sensor is a new version of GP2Y0A700K which takes a continuous distance reading and reports the distance as an analog voltage with a distance range of 1m (39.3") to 5.5m (216.5").

The interface is 5-wire JST connector (included with pins) with dual Vcc, dual Gnd, and a single output voltage.

Simply provide power and ground, and read a continuous analog voltage representing distance. A software lookup table can be implemented to translate the voltages to distances.

Connecting diagram

User guides

Two "voltage vs distance" diagrams are enough for using it. Voltage is linear to the inverse of distance. (Distance range is 1m to 5.5m) Two reference points:

Analog Voltage(V)
2.5
1.4

Then, we have a linear equation of digital value and distance. (512-sensorValue)/(1/100-1/distance)=(512-286)/(0.01-0.002) => distance=28250/(sensorValue-229.5) connection diagram for Romeo connection diagram for romeo

Sample code

/*Description: sharp 2Y0A710K distance ranger.(Range from 1m to 5.5m.)
This code prints out data of valid range.
However, if we put ranger very close to objects, we will have completely wrong results.
The error is inevitable because of electric character of this device.
So the only way of correct use is to make sure the distance of objects  not close to the ranger. (1m to 5.5m.)
Another tip: it is not very precise. So it is fit for detection,but not for measurement.

Tested by Michael from DFrobot
2012/2/13*/

/*Principle of this ranger: (See details in datasheet.)
Voltage is linear to the inverse of distance. (Distance range is 1m to 5.5m)
Two reference points:
Analog Voltage(V)   Digital value(0-1023)    Distance(cm)
  2.5                512                     100
  1.4                286                     500
Then, we have a linear equation of digital value and distance.
(512-sensorValue)/(1/100-1/distance)=(512-286)/(0.01-0.002)
=> distance=28250/(sensorValue-229.5);
*/
void setup() {
Serial.begin(9600);

}
int sensorValue;
int distance;
void loop() {

 sensorValue = analogRead(0);
 if(sensorValue>=280&&sensorValue<=512)  //Corresponding distance range from 1m to 5.5m
 {
   Serial.print("The distance is: ");
   distance=28250/(sensorValue-229.5);
  Serial.print(distance);
  Serial.println("cm");
 }
  delay(200);
}

image:nextredirectltr.pngGo shopping sharp gp2y0a710k distance sensor (100-550cm)(sku:sen0085) category: Product Manual category: SEN Series

Clone this wiki locally