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.
echo_sensor.cpp
- Committer:
- geovas
- Date:
- 2014-10-17
- Revision:
- 1:29eeaabaa8e1
File content as of revision 1:29eeaabaa8e1:
#include "echo_sensor.h" DigitalOut trigPin(echoPin_); DigitalIn echoPin(echoPin_); int getEcho(void) { return 0; } void initEcho(void) { trigPin = 0; }