megan gimple / PVD_Driver
Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers PVD_Driver.h Source File

PVD_Driver.h

00001 #ifndef PVD_Driver_H
00002 #define PVD_Driver_H
00003 
00004 #include "mbed.h"
00005 
00006 class PVD
00007 {
00008 
00009 public:
00010     PVD(PinName in1);
00011     float R,V;
00012     float Res();
00013     float Volt();
00014 
00015 private:
00016     AnalogIn _in1;
00017 };
00018 
00019 #endif