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.
Diff: LM19_Driver.h
- Revision:
- 1:101ffcb3157f
- Parent:
- 0:929925da937d
- Child:
- 2:18597e0a246f
--- a/LM19_Driver.h Thu Nov 24 02:11:25 2022 +0000 +++ b/LM19_Driver.h Thu Dec 01 23:58:06 2022 +0000 @@ -1,20 +1,19 @@ #ifndef LM19_Driver_H #define LM19_Driver_H + #include "mbed.h" class LM19 { public: - LM19(PinName in1); - float c1, c2, c3, c4; - float volt(); + LM19(PinName in1); + float c1, c2, c3, c4; + float volt(); private: - AnalogIn_in1; + AnalogIn _in1; }; - #endif -