Lucy Damon / PDV_Driver2
Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers PDV_Driver.h Source File

PDV_Driver.h

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