Antonia Baumgartner / Mbed 2 deprecated Versuch21

Dependencies:   mbed

Fork of Versuch20 by Alexander Wyss

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers IRSensorGF.h Source File

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_ */