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.
Fork of HC-SR04 by
main.cpp
- Committer:
- tbjazic
- Date:
- 2015-12-05
- Revision:
- 2:f86b1e3609b3
- Parent:
- 1:22043b67c31c
- Child:
- 3:3297ea6e3ae1
File content as of revision 2:f86b1e3609b3:
/** Revision 2: Separating the class declaration, implementation and main() function into files. */
#include "mbed.h"
#include "HCSR04.h"
Serial pc(USBTX, USBRX); // communication with terminal
int main() {
HCSR04 sensor(p5, p7); // instantiate the sensor object
while(1) {
/** Print the result in cm to the terminal with 1 decimal place
* (number 5 after % means that total of 5 digits will be reserved
* for printing the number, including the dot and one decimal place). */
pc.printf("Distance: %5.1f cm\r", sensor.getDistance_cm());
wait_ms(1000-25);
}
}
