Sharp Distance Measuring Sensor Unit 10 To 80 Cm Gp2Y0A21Yk0F
Rs. 336.00 Rs. 387.00
- Brand: https://www.sharpsde.com/products/optoelectronic-components/mode
- Product Code: SEN-IR
- SKU -
- Availability: 2-3 Days
- Price in reward points: 4
- For Bulk Order 9962060070
Quick support on WhatsApp (+919962060070) only between morning 11am-4pm, no call will be answered
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
https://www.sharpsde.com/products/optoelectronic-components/model/GP2Y0A21YK0F/
/*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