<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Arduino Temperature Display</title>
	<atom:link href="http://www.brutusweb.com/20080818/arduino-temperature-display/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.brutusweb.com/20080818/arduino-temperature-display/</link>
	<description>Brutus. On the Web.</description>
	<lastBuildDate>Thu, 22 Jul 2010 19:02:05 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Robert</title>
		<link>http://www.brutusweb.com/20080818/arduino-temperature-display/comment-page-1/#comment-1316</link>
		<dc:creator>Robert</dc:creator>
		<pubDate>Fri, 07 Nov 2008 23:02:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.brutusweb.com/?p=281#comment-1316</guid>
		<description>Thanks for your help... I finished my project and wrote up a quick instructable about it...
Had some outside help re-writing the code to use millis() instead of Delays.... check it out!

http://www.instructables.com/id/Digital_Thermostatic_Beer_Refreshment_Regulator/</description>
		<content:encoded><![CDATA[<p>Thanks for your help&#8230; I finished my project and wrote up a quick instructable about it&#8230;<br />
Had some outside help re-writing the code to use millis() instead of Delays&#8230;. check it out!</p>
<p><a href="http://www.instructables.com/id/Digital_Thermostatic_Beer_Refreshment_Regulator/" rel="nofollow">http://www.instructables.com/id/Digital_Thermostatic_Beer_Refreshment_Regulator/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: BRuTuS</title>
		<link>http://www.brutusweb.com/20080818/arduino-temperature-display/comment-page-1/#comment-1315</link>
		<dc:creator>BRuTuS</dc:creator>
		<pubDate>Thu, 30 Oct 2008 19:21:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.brutusweb.com/?p=281#comment-1315</guid>
		<description>Could not find a rounding function in the Arduino software so I made my own ;)</description>
		<content:encoded><![CDATA[<p>Could not find a rounding function in the Arduino software so I made my own <img src='http://www.brutusweb.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Robert</title>
		<link>http://www.brutusweb.com/20080818/arduino-temperature-display/comment-page-1/#comment-1314</link>
		<dc:creator>Robert</dc:creator>
		<pubDate>Thu, 30 Oct 2008 18:34:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.brutusweb.com/?p=281#comment-1314</guid>
		<description>I found your sketch and have been hacking it up to fit my purpose... it&#039;s getting nice and messy now... hehe.. I&#039;m a hardware guy so software is a different world to me....

Have a question about the conversion part... what does the &quot;if&quot; statement do?

  temp = lm35_val;           //gets mV reading from LM35 center leg...
  temp1=temp/10;            // divide by 10 to get &quot;true&quot; Celsius reading
  temp2=temp%10;         //modulo operation for extra variable of accuracy
  
  if (temp2 &gt;= 5)                //not sure what this part does.......????
  {
    temp_x++;
  }</description>
		<content:encoded><![CDATA[<p>I found your sketch and have been hacking it up to fit my purpose&#8230; it&#8217;s getting nice and messy now&#8230; hehe.. I&#8217;m a hardware guy so software is a different world to me&#8230;.</p>
<p>Have a question about the conversion part&#8230; what does the &#8220;if&#8221; statement do?</p>
<p>  temp = lm35_val;           //gets mV reading from LM35 center leg&#8230;<br />
  temp1=temp/10;            // divide by 10 to get &#8220;true&#8221; Celsius reading<br />
  temp2=temp%10;         //modulo operation for extra variable of accuracy</p>
<p>  if (temp2 &gt;= 5)                //not sure what this part does&#8230;&#8230;.????<br />
  {<br />
    temp_x++;<br />
  }</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: BRuTuS</title>
		<link>http://www.brutusweb.com/20080818/arduino-temperature-display/comment-page-1/#comment-1313</link>
		<dc:creator>BRuTuS</dc:creator>
		<pubDate>Wed, 29 Oct 2008 23:46:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.brutusweb.com/?p=281#comment-1313</guid>
		<description>Yes Sir - Hex to Decimal is how I did it in my program.

the SendLCD command really was just for a tiny bit less typing on my part ;)  What I perhaps should have done was modify that function to accept a hex value and convert/send it in decimal.. would have saved me some of the lookup conversions I did by hand.</description>
		<content:encoded><![CDATA[<p>Yes Sir &#8211; Hex to Decimal is how I did it in my program.</p>
<p>the SendLCD command really was just for a tiny bit less typing on my part <img src='http://www.brutusweb.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />   What I perhaps should have done was modify that function to accept a hex value and convert/send it in decimal.. would have saved me some of the lookup conversions I did by hand.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Robert</title>
		<link>http://www.brutusweb.com/20080818/arduino-temperature-display/comment-page-1/#comment-1312</link>
		<dc:creator>Robert</dc:creator>
		<pubDate>Wed, 29 Oct 2008 17:35:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.brutusweb.com/?p=281#comment-1312</guid>
		<description>Think I might have answered my own question...  you have to convert the hex command to regular decimal....   hex value &quot;fe&quot; is decimal &quot;254&quot; ... so sendLcd(254); sendLcd(1) is just the decimal for the hex val to clear the LCD...</description>
		<content:encoded><![CDATA[<p>Think I might have answered my own question&#8230;  you have to convert the hex command to regular decimal&#8230;.   hex value &#8220;fe&#8221; is decimal &#8220;254&#8243; &#8230; so sendLcd(254); sendLcd(1) is just the decimal for the hex val to clear the LCD&#8230;</p>
]]></content:encoded>
	</item>
</channel>
</rss>

