Yeongsoo Kim / Mbed 2 deprecated Mecha_Distance_Sensor

Dependencies:   mbed

Sensor/DistanceSensor.h

Committer:
yeongsookim
Date:
2020-11-11
Revision:
0:64fe0ebc42c6

File content as of revision 0:64fe0ebc42c6:

#ifndef MBED_DISTANCESENSOR_H
#define MBED_DISTANCESENSOR_H

#include "mbed.h"

class DistanceSensor
{
public:
    DistanceSensor(PinName a);
    float getDistance_cm();

protected:
    float m_distance;
    AnalogIn  m_analogIn;
    
};

#endif //MBED_DISTANCESENSOR_H