Lucy Damon / LM19_Driver2
Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers LM19_Driver.h Source File

LM19_Driver.h

00001 #ifndef LM19_Driver_H
00002 #define LM19_Driver_H
00003 
00004 #include "mbed.h"
00005 
00006 class LM19
00007 {
00008 
00009 public:
00010     LM19(PinName in1);          
00011     float c1, c2, c3, c4;       
00012     float temp();  
00013     float volt();             
00014 
00015 private:
00016     AnalogIn _in1;
00017 
00018 };
00019 
00020 #endif