2010-12-16 23:01:29 -04:00
|
|
|
// -*- tab-width: 4; Mode: C++; c-basic-offset: 3; indent-tabs-mode: t -*-
|
|
|
|
/*
|
|
|
|
AP_RangeFinder_SharpGP2Y.cpp - Arduino Library for Sharpe GP2Y0A02YK0F
|
|
|
|
infrared proximity sensor
|
|
|
|
Code by Jose Julio and Randy Mackay. DIYDrones.com
|
|
|
|
|
|
|
|
This library is free software; you can redistribute it and/or
|
|
|
|
modify it under the terms of the GNU Lesser General Public
|
|
|
|
License as published by the Free Software Foundation; either
|
|
|
|
version 2.1 of the License, or (at your option) any later version.
|
|
|
|
|
|
|
|
Sensor should be conected to one of the analog ports
|
|
|
|
|
|
|
|
Sparkfun URL: http://www.sparkfun.com/products/8958
|
|
|
|
datasheet: http://www.sparkfun.com/datasheets/Sensors/Infrared/gp2y0a02yk_e.pdf
|
|
|
|
|
|
|
|
Variables:
|
|
|
|
int raw_value : raw value from the sensor
|
2010-12-22 21:23:10 -04:00
|
|
|
int distance : distance in cm
|
2010-12-16 23:01:29 -04:00
|
|
|
int max_distance : maximum measurable distance (in cm)
|
|
|
|
int min_distance : minimum measurable distance (in cm)
|
|
|
|
|
|
|
|
Methods:
|
|
|
|
init(int analogPort) : Initialization of sensor
|
|
|
|
read() : read value from analog port
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
// AVR LibC Includes
|
|
|
|
#include "WConstants.h"
|
|
|
|
#include "AP_RangeFinder_SharpGP2Y.h"
|
|
|
|
|
2011-01-03 00:17:43 -04:00
|
|
|
// Constructor //////////////////////////////////////////////////////////////
|
|
|
|
AP_RangeFinder_SharpGP2Y::AP_RangeFinder_SharpGP2Y()
|
2010-12-16 23:01:29 -04:00
|
|
|
{
|
|
|
|
max_distance = AP_RANGEFINDER_SHARPEGP2Y_MAX_DISTANCE;
|
|
|
|
min_distance = AP_RANGEFINDER_SHARPEGP2Y_MIN_DISTANCE;
|
|
|
|
}
|
|
|
|
|
2011-01-03 00:17:43 -04:00
|
|
|
// Public Methods //////////////////////////////////////////////////////////////
|