READY TO RUMBLE

Dependencies:   mbed

Fork of Micromouse_alpha_copy_copy by PES2_R2D2.0

IRSensor.h

Committer:
ruesipat
Date:
2018-05-07
Revision:
7:5ef09519a6e9
Parent:
1:d9e840c48b1e

File content as of revision 7:5ef09519a6e9:

#ifndef IR_SENSOR_H_
#define IR_SENSOR_H_

#include <cstdlib>
#include <mbed.h>

class IRSensor
{

public:

    IRSensor(AnalogIn& distance);
    virtual ~IRSensor();
    float read();
private:
    AnalogIn& distance;


};

#endif /* IR_SENSOR_H_ */