TVZ2020 / LM35

Fork of LM35 by Lukas Buha

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers LM35.h Source File

LM35.h

00001 #ifndef MBED_LM35
00002 #define MBED_LM35
00003 #include "mbed.h"
00004 class LM35
00005 {
00006 public:
00007     LM35(PinName pin);
00008     float mjerenje();
00009     
00010 private:
00011     AnalogIn _pin;
00012 
00013 };
00014 
00015 #endif