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