Wish List 0

Sharp Distance Measuring Sensor Unit 10 To 80 Cm Gp2Y0A21Yk0F

Rs. 305.00 Rs. 351.00

> This SHARP distance sensor bounces IR off gadgets to decide how some distance away they're. It returns an analog voltage that may be used to decide how close the closest item is. Comes with 12″ long 3-JST interface cord. These sensors are correct for quick-range detection. For over 1 m distance, we suggest the use of sonar sensors

> To use, join the black cord to floor, pink cord to 5V and white cord to the analog enter. The analog voltage out will range from 3V while an object is handiest four″ (10 cm) away and zero.4V when the item is 32″ (eighty cm) away.

SPECIFICATIONS:

    Model                                              :GP2Y0A21YK0F (10 to 80 cm)

   Operating Voltage Range             :4.5~5.5V

   Distance measuring range (cm)  :10 ~ 80 cm

   Screw Holes                                    :37mm apart, 3 mm diameter.

   Connecting cable length (cm)      :15


OVERVIEW:

    Distance measuring range                                     :10 cm to 80 cm

    Output type                                                               :Analog voltage

    Output voltage differential over distance range :2.05 V (typical)

    Update period                                                           :38 ± 10 ms


PACKAGE INCLUDES:

   1 PCS x Gp2Y0A21Yk0F Sharp Distance Measuring Sensor 10-80 Cm


/*SOURCE CODE TAKEN FROM BELOW LINK

https://robojax.com/learn/arduino/?vid=robojax-sharp_IR-LCD1602-I2C

 * Sharp IR (infrared) distance measurement module with LCD1602 and I2C for Arduino

 * Measures the distance in cm.


 * Watch the video https://youtu.be/RHgMwtKLEnE


 *  * 


Original library: https://github.com/guillaume-rico/SharpIR



// Written and updated by Ahmad Shamshiri for Robojax.com

// on Jan 03, 2018 at 20:01 in Ajax, Ontario, Canada

Nejrabi

* Get this code and other Arduino codes from Robojax.com

Learn Arduino step by step in structured course with all material, wiring diagram and library

all in once place. Purchase My course on Udemy.com http://robojax.com/L/?id=62


If you found this tutorial helpful, please support me so I can continue creating 

content like this. You can support me on Patreon http://robojax.com/L/?id=63


or make donation using PayPal http://robojax.com/L/?id=64


 *  * This code is "AS IS" without warranty or liability. Free to be used as long as you keep this note intact.* 

 * This code has been download from Robojax.com

    This program is free software: you can redistribute it and/or modify

    it under the terms of the GNU General Public License as published by

    the Free Software Foundation, either version 3 of the License, or

    (at your option) any later version.


    This program is distributed in the hope that it will be useful,

    but WITHOUT ANY WARRANTY; without even the implied warranty of

    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the

    GNU General Public License for more details.


    You should have received a copy of the GNU General Public License

    along with this program.  If not, see <https://www.gnu.org/licenses/>.


*/





#include <Wire.h> 

#include <LiquidCrystal_I2C.h>


// Set the LCD address to 0x27 for a 16 chars and 2 line display

LiquidCrystal_I2C lcd(0x27, 16, 2);


///////////////////***** start of Sharp IR

#include <SharpIR.h>


#define IR A0 // define Sharp IR signal pin

#define model 430 // the model of the IR module

// Sharp IR code for Robojax.com

// ir: the pin where your sensor is attached

// model: an int that determines your sensor:

/*

 * GP2Y0A02YK0F --> "20150"

 GP2Y0A21YK --> "1080"

 GP2Y0A710K0F --> "100500"

  GP2YA41SK0F --> "430"

 */


SharpIR SharpIR(IR, model);

/////////////////////**** end of Sharp IR


void setup()

{

  // Robojax code for LCD with I2C

  // initialize the LCD, 

  lcd.begin();

 

  // Turn on the blacklight and print a message.

  lcd.backlight();

  // Robojax code for LCD with I2C



}


void loop()

{

  

  //start of loop Robojax code for LCD with I2C

  lcd.clear();

  lcd.print("Robojax IR Test");

  lcd.setCursor (0,1); // go to start of 2nd line

 int dis=SharpIR.distance();// gets the distance in cm

 String distance = String(dis);

 distance ="Distance: "+distance+"cm";

 lcd.print(distance);

  //lcd.print(millis() / 1000);

  delay(500);

 //end of loopcode Robojax code for LCD with I2C

}


15 DAYS

Write a review

Please login or register to review