Očitavanje temperature pomoću LM35 senzora.

Fork of LM35 by Lukas Buha

Revision:
0:0604431a65be
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/LM35.h	Mon Feb 22 01:53:52 2021 +0000
@@ -0,0 +1,15 @@
+#ifndef MBED_LM35
+#define MBED_LM35
+#include "mbed.h"
+class LM35
+{
+public:
+    LM35(PinName pin);
+    float mjerenje();
+    
+private:
+    AnalogIn _pin;
+
+};
+
+#endif
\ No newline at end of file