megan gimple / PVD_Driver
Revision:
0:cc0c5534467e
Child:
1:460124e3da18
diff -r 000000000000 -r cc0c5534467e PVD_Driver.h
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/PVD_Driver.h	Thu Nov 11 22:53:05 2021 +0000
@@ -0,0 +1,19 @@
+#ifndef PVD_Driver_H
+#define PVD_Driver_H
+
+#include "mbed.h"
+
+class PVD
+
+{
+
+public:
+    PVD(PinName in1);
+    float resistance;
+    float volt;
+
+private:
+    AnalogIn _in1;
+};
+
+#endif