Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
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