Konstrukcijski zadatak V0

Dependencies:   mbed TextLCD

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers thermistor.h Source File

thermistor.h

00001 #ifndef THERMISTOR_H
00002 #define THERMISTOR_H
00003 #include "mbed.h"
00004 class Temperature{
00005 public:
00006     Temperature(PinName senzor);
00007     float get_temperature();
00008 private:
00009     AnalogIn senzor;
00010     float temp;
00011 };
00012 #endif