Daisy Ramirez / ADC

Dependencies:   ADC

Dependents:   termometro

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers ADC.h Source File

ADC.h

00001 #ifndef MBED_ADC
00002 #define MBED_ADC_H
00003 
00004 #include "mbed.h"
00005 
00006 using namespace mbed;
00007 
00008 class adc
00009 
00010 {
00011 public:
00012 
00013     double adcx(PinName Sen);
00014 
00015 private:
00016 
00017     PinName _Sen;
00018 };
00019 
00020 #endif