4180Lab3Part1
Dependencies: HC_SR04_Ultrasonic_Library mbed
Fork of LPC1768_HCSR04_HelloWorld by
main.cpp
- Committer:
- CRaslawski
- Date:
- 2017-02-27
- Revision:
- 3:9285821440d2
- Parent:
- 2:3566c2d1e86b
File content as of revision 3:9285821440d2:
#include "mbed.h" #include "ultrasonic.h" void dist(int distance) { //put code here to execute when the distance has changed if(distance*0.00328084 < 40) { printf("Distance %f ft\r\n", distance*0.00328084); } } ultrasonic mu(p6, p7, .1, 1, &dist); //Set the trigger pin to D8 and the echo pin to D9 //have updates every .1 seconds and a timeout after 1 //second, and call dist when the distance changes int main() { mu.startUpdates();//start measuring the distance while(1) { //Do something else here mu.checkDistance(); //call checkDistance() as much as possible, as this is where //the class checks if dist needs to be called. } }