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:
- 0:876059873ad6
- Child:
- 1:56c7ec2f6ce5
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/LM19_Driver.h Wed Nov 10 15:13:35 2021 +0000
@@ -0,0 +1,18 @@
+#ifndef LM19_Driver_H
+#define LM19_Driver_H
+
+#include "mbed.h"
+
+class LM19 {
+
+ public:
+ LM19(PinName in1); //initialization function
+ float c1, c2, c3, c4;
+ float temp(); //temperature computation
+
+ private:
+ AnalogIn _in1;
+
+};
+
+#endif
\ No newline at end of file