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.
Fork of Versuch20 by
IRSensorGF.h
00001 #ifndef IR_SENSORGF_H_ 00002 #define IR_SENSORGF_H_ 00003 00004 #include <cstdlib> 00005 #include <mbed.h> 00006 00007 class IRSensorGF 00008 { 00009 00010 public: 00011 IRSensorGF(AnalogIn& distance); 00012 00013 virtual ~IRSensorGF(); 00014 int read(); 00015 00016 private: 00017 AnalogIn& distance; 00018 00019 }; 00020 00021 #endif /* IR_SENSORGF_H_ */
Generated on Sun Jul 17 2022 11:46:13 by
