Lucy Damon / PDV_Driver2

PDV_Driver.h

Committer:
lucydamon
Date:
2022-11-24
Revision:
0:a66b8623eed9
Child:
1:9f63f70d68fa

File content as of revision 0:a66b8623eed9:

#ifndef PDV_Driver_H
#define PDV_Driver_H
#include "mbed.h"

class PDV
{

public:
    PDV(PinName in1);
    float c1, c2, c3, c4;
    float resistance();

private:
    AnalogIn_in1;

};


#endif