TAKT 平林 / AnalogInBaseClass
Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers AnalogInBaseClass.h Source File

AnalogInBaseClass.h

00001 #ifndef MBED_ANALOGINBASE
00002 #define MBED_ANALOGINBASE
00003  
00004 #include "mbed.h"
00005  
00006 class AnalogInBaseClass {
00007 public:
00008     AnalogInBaseClass(PinName pin);
00009     float read(void);
00010 
00011   
00012 private:  
00013     AnalogIn _pin;
00014 };
00015  
00016 #endif