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.
TemperatureSensor.h
00001 #ifndef TEMPERATURE_SENSOR_H 00002 #define TEMPERATURE_SENSOR_H 00003 00004 #include "mbed.h" 00005 00006 class TemperatureSensor { 00007 public: 00008 TemperatureSensor(); 00009 00010 void measure(void); 00011 float getKelvin(void); 00012 float getResistance(void); 00013 float getPercentOfScale(void); 00014 00015 private: 00016 AnalogIn adc; 00017 float percentOfScale; 00018 float resistance; 00019 }; 00020 00021 #endif
Generated on Wed Jul 13 2022 23:42:34 by
1.7.2