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.cpp
- Revision:
- 2:18597e0a246f
- Parent:
- 1:101ffcb3157f
--- a/LM19_Driver.cpp Thu Dec 01 23:58:06 2022 +0000 +++ b/LM19_Driver.cpp Fri Dec 02 00:19:49 2022 +0000 @@ -9,6 +9,13 @@ } +float LM19::temp() +{ + float temp=_in1.read()*3.3; + return temp; + +} + float LM19::volt() { float volt=_in1.read()*3.3;