megan gimple / PVD_Driver

PVD_Driver.h

Committer:
mgimple
Date:
2021-11-11
Revision:
0:cc0c5534467e
Child:
1:460124e3da18

File content as of revision 0:cc0c5534467e:

#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