test

Dependencies:   MbedJSONValue DISCO_L475VG_IOT01A_wifi mbed-http

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers US100.h Source File

US100.h

00001 #ifndef US100_H
00002 #define US100_H
00003 #include "mbed.h"
00004 class US100
00005 {
00006 public:
00007     US100(PinName t, PinName e);
00008     int echo_duration();
00009     int distance();
00010 private:
00011     DigitalOut trig;
00012     DigitalIn echo;
00013     Timer timer;
00014 };
00015 
00016 #endif