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.
hcsr04.h
- Committer:
- bernard_arnault
- Date:
- 2020-07-06
- Revision:
- 0:2d8f1aed9d70
File content as of revision 0:2d8f1aed9d70:
/*#ifndef hcsr04_H
#define hcsr04_H
#include "mbed.h"
class HCSR04 {
public:
HCSR04(PinName t, PinName e);
long echo_duration();
long distance();
private:
DigitalOut trig;
DigitalIn echo;
Timer timer;
long duration,distance_cm;
};
#endif*/