ENDLÖSUNG:)

Dependencies:   mbed

Fork of MicroMouse_MASTER_FOUR by PES2_R2D2.0

IRSensor.h

Committer:
ruesipat
Date:
2018-05-22
Revision:
10:e8110fb94686
Parent:
1:d9e840c48b1e

File content as of revision 10:e8110fb94686:

#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_ */