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.
LM61CIZ.h
00001 /** 00002 * LM61CIZ Temperature sensor library 00003 * 00004 * @author Junichi Katsu 00005 * @version 1.0 00006 * @date 02-April-2015 00007 * 00008 */ 00009 00010 #ifndef MBED_LM61CIZ_H 00011 #define MBED_LM61CIZ_H 00012 00013 #include "mbed.h" 00014 00015 /** LM61CIZ class 00016 * @endcode 00017 */ 00018 00019 class LM61CIZ { 00020 public: 00021 /** Create a LM61CIZ instance 00022 * 00023 * param AnalogIn pin 00024 * 00025 */ 00026 LM61CIZ(PinName ain); 00027 00028 /** Read the current temperature value from LM61CIZ sensor 00029 * 00030 */ 00031 float getTemperature(void); 00032 private: 00033 00034 AnalogIn _sensor; 00035 }; 00036 00037 #endif // MBED_LM61CIZ_H 00038
Generated on Fri Jul 22 2022 05:28:45 by
1.7.2