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.
PVD_Driver.h
- Committer:
- mgimple
- Date:
- 2021-11-11
- Revision:
- 1:460124e3da18
- Parent:
- 0:cc0c5534467e
- Child:
- 2:7b9d20c715f5
File content as of revision 1:460124e3da18:
#ifndef PVD_Driver_H #define PVD_Driver_H #include "mbed.h" class PVD { public: PVD(PinName in1); float R,V; float Res(); private: AnalogIn _in1; }; #endif