Rhomb.io demo program for HC-SR04 Ultrasonic sensor

Dependencies:   HC_SR04_Ultrasonic_Library

Files at this revision

API Documentation at this revision

Comitter:
rmir2
Date:
Thu Apr 04 06:50:43 2019 +0000
Parent:
1:4a5586eb1765
Commit message:
Working fine at Deimos

Changed in this revision

main.cpp Show annotated file Show diff for this revision Revisions of this file
mbed-os.lib Show annotated file Show diff for this revision Revisions of this file
mbed.bld Show diff for this revision Revisions of this file
--- a/main.cpp	Thu Dec 04 08:04:55 2014 +0000
+++ b/main.cpp	Thu Apr 04 06:50:43 2019 +0000
@@ -1,3 +1,5 @@
+//Medidor de distancia ultrasonico. Trigger: IO3, Echo: IO4
+
 #include "mbed.h"
 #include "ultrasonic.h"
 
@@ -7,7 +9,7 @@
     printf("Distance changed to %dmm\r\n", distance);
 }
 
-ultrasonic mu(D8, D9, .1, 1, &dist);    //Set the trigger pin to D8 and the echo pin to D9
+ultrasonic mu(IO3, IO4, .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
 
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/mbed-os.lib	Thu Apr 04 06:50:43 2019 +0000
@@ -0,0 +1,1 @@
+https://github.com/ARMmbed/mbed-os/#51d55508e8400b60af467005646c4e2164738d48
--- a/mbed.bld	Thu Dec 04 08:04:55 2014 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,1 +0,0 @@
-http://mbed.org/users/mbed_official/code/mbed/builds/031413cf7a89
\ No newline at end of file