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.
Distance_sensor.h
00001 #ifndef MBED_DISTANCEMAXSONAR_H 00002 #define MBED_DISTANCEMAXSONAR_H 00003 00004 #include "mbed.h" 00005 00006 00007 class DistanceMaxSonar { 00008 public: 00009 00010 DistanceMaxSonar(PinName MaxS); 00011 float GetInch(); 00012 float GetFt(); 00013 float Getcm(); 00014 float GetM(); 00015 00016 00017 private: 00018 AnalogIn _MaxS; 00019 }; 00020 #endif 00021
Generated on Mon Aug 8 2022 08:46:19 by
1.7.2