Yeongsoo Kim / Mbed 2 deprecated Mecha_Distance_Sensor

Dependencies:   mbed

Sensor/DistanceSensor.h

Committer:
yeongsookim
Date:
2020-11-12
Revision:
4:adcf96bb4a51
Parent:
0:64fe0ebc42c6

File content as of revision 4:adcf96bb4a51:

#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