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.
LM19_Driver.h
00001 #ifndef LM19_Driver_H 00002 #define LM19_Driver_H 00003 00004 #include "mbed.h" 00005 00006 class LM19 00007 { 00008 00009 public: 00010 LM19(PinName in1); 00011 float c1, c2, c3, c4; 00012 float temp(); 00013 float volt(); 00014 00015 private: 00016 AnalogIn _in1; 00017 00018 }; 00019 00020 #endif
Generated on Fri Dec 2 2022 00:23:03 by
1.7.2