<?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: Using the MAX6675 Thermocouple-to-Digital Converter</title>
	<atom:link href="http://www.rocketnumbernine.com/2009/06/27/using-the-max6675-thermocouple-to-digital-converter/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.rocketnumbernine.com/2009/06/27/using-the-max6675-thermocouple-to-digital-converter/</link>
	<description>Andrew&#039;s Project Blog - hardware, software, things</description>
	<lastBuildDate>Tue, 31 Aug 2010 07:51:52 +0100</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Ryan</title>
		<link>http://www.rocketnumbernine.com/2009/06/27/using-the-max6675-thermocouple-to-digital-converter/comment-page-1/#comment-141</link>
		<dc:creator>Ryan</dc:creator>
		<pubDate>Wed, 28 Apr 2010 21:55:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.rocketnumbernine.com/?p=287#comment-141</guid>
		<description>The connectors are really nice, esp because they make the system &quot;proper&quot; for thermocouples.  (Memories of engineers yelling at me at work for using dissimilar metals for hooking thermocouples, ahhh!)  The cost kinda sucks, but its worth it after the number of boards I fried trying to attach/solder thermocouple wire.</description>
		<content:encoded><![CDATA[<p>The connectors are really nice, esp because they make the system &#8220;proper&#8221; for thermocouples.  (Memories of engineers yelling at me at work for using dissimilar metals for hooking thermocouples, ahhh!)  The cost kinda sucks, but its worth it after the number of boards I fried trying to attach/solder thermocouple wire.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: andrew</title>
		<link>http://www.rocketnumbernine.com/2009/06/27/using-the-max6675-thermocouple-to-digital-converter/comment-page-1/#comment-140</link>
		<dc:creator>andrew</dc:creator>
		<pubDate>Wed, 28 Apr 2010 19:47:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.rocketnumbernine.com/?p=287#comment-140</guid>
		<description>I&#039;ve talked to the MAX665 using the SPI library on both an Arduino and an AT90USB running on a Teensy board, sketch is 3172 bytes on the Arduino (although 2K of that is the Serial and print)
Those Thermocouple connectors look great! - haven&#039;t seen them before, have been using 0.1&quot; header sockets which isn&#039;t ideal for the thin thermocouple wire.</description>
		<content:encoded><![CDATA[<p>I&#8217;ve talked to the MAX665 using the SPI library on both an Arduino and an AT90USB running on a Teensy board, sketch is 3172 bytes on the Arduino (although 2K of that is the Serial and print)<br />
Those Thermocouple connectors look great! &#8211; haven&#8217;t seen them before, have been using 0.1&#8243; header sockets which isn&#8217;t ideal for the thin thermocouple wire.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ryan</title>
		<link>http://www.rocketnumbernine.com/2009/06/27/using-the-max6675-thermocouple-to-digital-converter/comment-page-1/#comment-138</link>
		<dc:creator>Ryan</dc:creator>
		<pubDate>Wed, 28 Apr 2010 01:00:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.rocketnumbernine.com/?p=287#comment-138</guid>
		<description>Great article.  What is the final sketch size? 

I created my own library for the MAX6675 (http://code.google.com/p/max6675-arduino-library/) when I needed to interface the chip for temp monitoring on my reflow and outdoor grill.  It worked well, but I still need to do a few updates on the library.  I didn&#039;t want to get involved with the SPI library at the time, but you make it seem simple.

BTW, for the breakouts I made I used a PCB thermocoupe connector which makes a real good connection for the thermocouple and doesn&#039;t give error in the readings.</description>
		<content:encoded><![CDATA[<p>Great article.  What is the final sketch size? </p>
<p>I created my own library for the MAX6675 (<a href="http://code.google.com/p/max6675-arduino-library/" rel="nofollow">http://code.google.com/p/max6675-arduino-library/</a>) when I needed to interface the chip for temp monitoring on my reflow and outdoor grill.  It worked well, but I still need to do a few updates on the library.  I didn&#8217;t want to get involved with the SPI library at the time, but you make it seem simple.</p>
<p>BTW, for the breakouts I made I used a PCB thermocoupe connector which makes a real good connection for the thermocouple and doesn&#8217;t give error in the readings.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: andrew</title>
		<link>http://www.rocketnumbernine.com/2009/06/27/using-the-max6675-thermocouple-to-digital-converter/comment-page-1/#comment-62</link>
		<dc:creator>andrew</dc:creator>
		<pubDate>Fri, 09 Oct 2009 06:36:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.rocketnumbernine.com/?p=287#comment-62</guid>
		<description>Its fairly trivial c code that should work.  The only issue is that you need to define the pins the the ATMega328p uses for SPI.
From www.atmel.com/dyn/resources/prod_documents/doc8011.pdf, it looks like it should be something like the following:

elif defined(__AVR_ATmega324p__)
 #define SPI_SS_PIN PB4
 #define SPI_SCK_PIN PB7
 #define SPI_MOSI_PIN PB5
 #define SPI_MISO_PIN PB6</description>
		<content:encoded><![CDATA[<p>Its fairly trivial c code that should work.  The only issue is that you need to define the pins the the ATMega328p uses for SPI.<br />
From <a href="http://www.atmel.com/dyn/resources/prod_documents/doc8011.pdf" rel="nofollow">http://www.atmel.com/dyn/resources/prod_documents/doc8011.pdf</a>, it looks like it should be something like the following:</p>
<p>elif defined(__AVR_ATmega324p__)<br />
 #define SPI_SS_PIN PB4<br />
 #define SPI_SCK_PIN PB7<br />
 #define SPI_MOSI_PIN PB5<br />
 #define SPI_MISO_PIN PB6</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Devin</title>
		<link>http://www.rocketnumbernine.com/2009/06/27/using-the-max6675-thermocouple-to-digital-converter/comment-page-1/#comment-61</link>
		<dc:creator>Devin</dc:creator>
		<pubDate>Thu, 08 Oct 2009 23:10:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.rocketnumbernine.com/?p=287#comment-61</guid>
		<description>Andrew,  Will the SPI header you included work run out of the box for example with a AtMega324p? The code looks like standard C code and something that I could use in AVR Studio but having never used SPI before I am little apprehensive. Any help would be awesome.</description>
		<content:encoded><![CDATA[<p>Andrew,  Will the SPI header you included work run out of the box for example with a AtMega324p? The code looks like standard C code and something that I could use in AVR Studio but having never used SPI before I am little apprehensive. Any help would be awesome.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: andrew</title>
		<link>http://www.rocketnumbernine.com/2009/06/27/using-the-max6675-thermocouple-to-digital-converter/comment-page-1/#comment-43</link>
		<dc:creator>andrew</dc:creator>
		<pubDate>Thu, 23 Jul 2009 20:11:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.rocketnumbernine.com/?p=287#comment-43</guid>
		<description>The SPI helper library works on the Teensy.  If your happy using GCC with the AVR then all that&#039;s required is to replace the Arduino code (print/pinMode/digitalWrite etc.) with GCC/prjc library calls and place everything in a main function.  I&#039;d suggest changing the PRJC blinky test application.  The hid_listen program (downloadable from the &lt;a href=&quot;http://www.prjc.com/&quot; rel=&quot;nofollow&quot;&gt;PRJC website&lt;/a&gt; can be used to listen to the text sent from the Teensy.  The Teensy Arduino plugin might allow you to run the arduino code as is on the Teensy - but i haven&#039;t tried that.
 
I designed a break out board with Eagle and ordered through &lt;a href=&quot;http://www.batchpcb.com/product_info.php?products_id=20538&amp;check=1586acac99a545c865a8a0ae59868ddc&quot; rel=&quot;nofollow&quot;&gt;BatchPCB&lt;/a&gt; that allows the SOIC-8 IC package to be plugged in to a bread board (I added a photo to the top of the blog), these can also be bought from &lt;a href=&quot;http://www.sparkfun.com/commerce/product_info.php?products_id=494&quot; rel=&quot;nofollow&quot;&gt;sparkfun&lt;/a&gt; (I think it works out cheaper to buy from sparkfun if ordering something else than using batchpcb due to the small size of the board).  It&#039;s not the easiest thing to solder but is just about manageable it with a thin solder bit (search youtube for lots of SMD soldering tutorials).  This can be used on a prototype board with the Teensy or even a &lt;a href=&quot;http://www.sparkfun.com/commerce/product_info.php?products_id=7914&quot; rel=&quot;nofollow&quot;&gt;prototype shield&lt;/a&gt; on top of the Arduino.

Hope this helps, good luck</description>
		<content:encoded><![CDATA[<p>The SPI helper library works on the Teensy.  If your happy using GCC with the AVR then all that&#8217;s required is to replace the Arduino code (print/pinMode/digitalWrite etc.) with GCC/prjc library calls and place everything in a main function.  I&#8217;d suggest changing the PRJC blinky test application.  The hid_listen program (downloadable from the <a href="http://www.prjc.com/" rel="nofollow">PRJC website</a> can be used to listen to the text sent from the Teensy.  The Teensy Arduino plugin might allow you to run the arduino code as is on the Teensy &#8211; but i haven&#8217;t tried that.</p>
<p>I designed a break out board with Eagle and ordered through <a href="http://www.batchpcb.com/product_info.php?products_id=20538&#038;check=1586acac99a545c865a8a0ae59868ddc" rel="nofollow">BatchPCB</a> that allows the SOIC-8 IC package to be plugged in to a bread board (I added a photo to the top of the blog), these can also be bought from <a href="http://www.sparkfun.com/commerce/product_info.php?products_id=494" rel="nofollow">sparkfun</a> (I think it works out cheaper to buy from sparkfun if ordering something else than using batchpcb due to the small size of the board).  It&#8217;s not the easiest thing to solder but is just about manageable it with a thin solder bit (search youtube for lots of SMD soldering tutorials).  This can be used on a prototype board with the Teensy or even a <a href="http://www.sparkfun.com/commerce/product_info.php?products_id=7914" rel="nofollow">prototype shield</a> on top of the Arduino.</p>
<p>Hope this helps, good luck</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: dame</title>
		<link>http://www.rocketnumbernine.com/2009/06/27/using-the-max6675-thermocouple-to-digital-converter/comment-page-1/#comment-42</link>
		<dc:creator>dame</dc:creator>
		<pubDate>Thu, 23 Jul 2009 07:18:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.rocketnumbernine.com/?p=287#comment-42</guid>
		<description>Quick question.  I was looking at the work you did with the max6675 chip.  Would I be able to use the teensy or would I have to use an arduino?  I&#039;m trying to interface the max6675 chips with either a teensy or an arduino, and trasfer data from (2) thermocouples via USB to my computer.  I spoke to a mechanical engineer and he said I would have to create a PCB, but that is just out of my league.  Do you have any ideas? or maybe some PCB layouts that I might use or purchase that would work?  I have some one to put it together for me, but I just wanted to see what I have to buy for him to do so.</description>
		<content:encoded><![CDATA[<p>Quick question.  I was looking at the work you did with the max6675 chip.  Would I be able to use the teensy or would I have to use an arduino?  I&#8217;m trying to interface the max6675 chips with either a teensy or an arduino, and trasfer data from (2) thermocouples via USB to my computer.  I spoke to a mechanical engineer and he said I would have to create a PCB, but that is just out of my league.  Do you have any ideas? or maybe some PCB layouts that I might use or purchase that would work?  I have some one to put it together for me, but I just wanted to see what I have to buy for him to do so.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Dynamic page generated in 22.198 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2010-09-09 16:40:35 -->
