cansat_B 2019 / Mbed 2 deprecated US015Ver2

Dependencies:   mbed

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers main.cpp Source File

main.cpp

00001 #include "mbed.h"
00002 #include "us015.h"
00003 
00004 US015 hs(p12,p11);
00005 
00006 int main()
00007 {
00008     while(1) {
00009         hs.TrigerOut();
00010         wait(1);
00011         int distance;
00012         distance = hs.GetDistance();
00013         printf("%d\n",distance);
00014         
00015     }
00016 }