Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
PDV_Driver.h
- Committer:
- lucydamon
- Date:
- 2022-12-01
- Revision:
- 1:9f63f70d68fa
- Parent:
- 0:a66b8623eed9
- Child:
- 2:a8a800c4f0c3
File content as of revision 1:9f63f70d68fa:
#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