<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://w.electrodragon.com/w/index.php?action=history&amp;feed=atom&amp;title=LM35D_Temperature_Sensor_%28TO-92%29</id>
	<title>LM35D Temperature Sensor (TO-92) - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://w.electrodragon.com/w/index.php?action=history&amp;feed=atom&amp;title=LM35D_Temperature_Sensor_%28TO-92%29"/>
	<link rel="alternate" type="text/html" href="https://w.electrodragon.com/w/index.php?title=LM35D_Temperature_Sensor_(TO-92)&amp;action=history"/>
	<updated>2026-06-04T18:50:49Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.37.2</generator>
	<entry>
		<id>https://w.electrodragon.com/w/index.php?title=LM35D_Temperature_Sensor_(TO-92)&amp;diff=11805&amp;oldid=prev</id>
		<title>Chao at 12:56, 27 November 2016</title>
		<link rel="alternate" type="text/html" href="https://w.electrodragon.com/w/index.php?title=LM35D_Temperature_Sensor_(TO-92)&amp;diff=11805&amp;oldid=prev"/>
		<updated>2016-11-27T12:56:03Z</updated>

		<summary type="html">&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;== Information ==&lt;br /&gt;
LM35 is the United States NS (National Semiconductor) produced analog temperature sensor, the output voltage is linearly proportional to the Celsius temperature, output at 0 ℃ 0V, the temperature is increased by 1 ℃, the output voltage increases 10mV. Temperature range -55 ~ 150 ℃, an accuracy of 0.75 ℃, precision room temperature up to 0.25 ℃. Common TO-92 package pinout shown in Figure 6, in a temperature range of 2 ℃ ~ 150 ℃ typical application circuit shown below.&lt;br /&gt;
[[File:LM35-1.jpg|400px]]&lt;br /&gt;
== Arduino Wiring ==&lt;br /&gt;
* [[File:Lm35-2.jpg|400px]]&lt;br /&gt;
The main idea of the program design: Arduino Uno controller via analog input port measurements LM35 output voltage value, and then by the scale factor 10mV / ℃ temperature values calculated. Meanwhile, at the time of 100 ℃, LM35 output voltage is 1000mV, in the internal reference voltage range Arduino Uno controller, so using the internal 1.1V reference voltage.&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;Arduino&amp;quot;&amp;gt;&lt;br /&gt;
int Digital_Value=0;&lt;br /&gt;
float temp_Value=0;&lt;br /&gt;
void setup(){&lt;br /&gt;
  Serial.begin(9600);      //baud rate 9600&lt;br /&gt;
  //sensing range 0～100℃，output voltage 0～1V，use internal 1.1V reference voltage&lt;br /&gt;
analogReference(INTERNAL);&lt;br /&gt;
}&lt;br /&gt;
void loop(){&lt;br /&gt;
   Digital_Value=analogRead(A0);   //read analog voltage value&lt;br /&gt;
   temp_Value=(float)Digital_Value/1023*110.00;//change to Celsius value&lt;br /&gt;
   Serial.print(&amp;quot;Temperature for LM35 is: &amp;quot;);&lt;br /&gt;
   Serial.println(temp_Value,2);  //send temperature data&lt;br /&gt;
   delay(1000);   //flash once per second&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Documents ==&lt;br /&gt;
&lt;br /&gt;
* [[File:Lm35.pdf|LM35 datasheet]]&lt;br /&gt;
[[category: Temperature Sensor]]&lt;/div&gt;</summary>
		<author><name>Chao</name></author>
	</entry>
</feed>