English Vietnamese
Hotline : 0901.122.122
Product details
Name: SHARP 2Y0A710K 100-500cm Infrared distance sensor GP2Y0A710K0F (Update: 24/03/2015)
Weight
10 (gam)
Volume
16 (cm3)
Price
Number of Price
1 17.39 USD
10 16.96 USD
Residual
10+
Views
1,904
Document
Product information:
Hidden content 
 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.

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) 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) 
sensor-1.JPG
sensor-2.JPG

/*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);                  
}