Basic library for Pololu's Sharp GP2Y0A51SK0F

Dependencies:   mbed

Dependents:   GrabTest R5 2016 Robotics Team 1

DistanceSensor.h

Committer:
Hypna
Date:
2016-04-06
Revision:
0:d03df6dd14d6
Child:
1:8db052ec94f1

File content as of revision 0:d03df6dd14d6:

#ifndef DISTANCE_SENSOR_H
#define DISTANCE_SENSOR_H

#include "mbed.h"

class DistanceSensor
{
    public:
    DistanceSensor(PinName ai);
    float getDistance();

    private:
    AnalogIn voltage;
};

#endif