<?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 Adaptors and IPhone for Audio Breadboard Work</title>
	<atom:link href="http://www.uchobby.com/index.php/2009/01/19/using-adaptors-and-iphone-for-audio-breadboard-work/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.uchobby.com/index.php/2009/01/19/using-adaptors-and-iphone-for-audio-breadboard-work/</link>
	<description>Microcontrollers Electronics Hobby</description>
	<lastBuildDate>Tue, 24 Jan 2012 09:58:33 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: dfowler</title>
		<link>http://www.uchobby.com/index.php/2009/01/19/using-adaptors-and-iphone-for-audio-breadboard-work/comment-page-1/#comment-1534</link>
		<dc:creator>dfowler</dc:creator>
		<pubDate>Sun, 25 Jan 2009 05:58:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.uchobby.com/?p=215#comment-1534</guid>
		<description>@Steve... The chip works nice, or the version I have does. I ran it at max voltage and driving a speaker with the output level clipping. Trying to blow the thing. It got hot and one side of the output gave up. I let the chip cool and it was working well again.</description>
		<content:encoded><![CDATA[<p>@Steve&#8230; The chip works nice, or the version I have does. I ran it at max voltage and driving a speaker with the output level clipping. Trying to blow the thing. It got hot and one side of the output gave up. I let the chip cool and it was working well again.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: dfowler</title>
		<link>http://www.uchobby.com/index.php/2009/01/19/using-adaptors-and-iphone-for-audio-breadboard-work/comment-page-1/#comment-1533</link>
		<dc:creator>dfowler</dc:creator>
		<pubDate>Sun, 25 Jan 2009 05:57:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.uchobby.com/?p=215#comment-1533</guid>
		<description>@Randall... Yes these adapters will be available at Curious Inventor soon.</description>
		<content:encoded><![CDATA[<p>@Randall&#8230; Yes these adapters will be available at Curious Inventor soon.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: dfowler</title>
		<link>http://www.uchobby.com/index.php/2009/01/19/using-adaptors-and-iphone-for-audio-breadboard-work/comment-page-1/#comment-1532</link>
		<dc:creator>dfowler</dc:creator>
		<pubDate>Sun, 25 Jan 2009 05:55:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.uchobby.com/?p=215#comment-1532</guid>
		<description>@Jose...  Yes the ISR(TIMER2_OVF_vect) function is the function that is called on each interrupt.</description>
		<content:encoded><![CDATA[<p>@Jose&#8230;  Yes the ISR(TIMER2_OVF_vect) function is the function that is called on each interrupt.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: José Xavier</title>
		<link>http://www.uchobby.com/index.php/2009/01/19/using-adaptors-and-iphone-for-audio-breadboard-work/comment-page-1/#comment-1531</link>
		<dc:creator>José Xavier</dc:creator>
		<pubDate>Thu, 22 Jan 2009 21:42:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.uchobby.com/?p=215#comment-1531</guid>
		<description>Hi, i have a question about a old post.
http://www.uchobby.com/index.php/2007/11/24/arduino-interrupts

In this function i have to write what i have that the ISR do, right?

//Timer2 overflow interrupt vector handler
ISR(TIMER2_OVF_vect) {

  //Toggle the IO pin to the other state.
  digitalWrite(TOGGLE_IO,!digitalRead(TOGGLE_IO));

  //Capture the current timer value. This is how much error we have
  //due to interrupt latency and the work in this function
  latency=TCNT2;

  //Reload the timer and correct for latency.  //Reload the timer and correct for latency.  //Reload the timer and correct for latency.
  TCNT2=latency+timerLoadValue;
}

Thanks</description>
		<content:encoded><![CDATA[<p>Hi, i have a question about a old post.<br />
<a href="http://www.uchobby.com/index.php/2007/11/24/arduino-interrupts" rel="nofollow">http://www.uchobby.com/index.php/2007/11/24/arduino-interrupts</a></p>
<p>In this function i have to write what i have that the ISR do, right?</p>
<p>//Timer2 overflow interrupt vector handler<br />
ISR(TIMER2_OVF_vect) {</p>
<p>  //Toggle the IO pin to the other state.<br />
  digitalWrite(TOGGLE_IO,!digitalRead(TOGGLE_IO));</p>
<p>  //Capture the current timer value. This is how much error we have<br />
  //due to interrupt latency and the work in this function<br />
  latency=TCNT2;</p>
<p>  //Reload the timer and correct for latency.  //Reload the timer and correct for latency.  //Reload the timer and correct for latency.<br />
  TCNT2=latency+timerLoadValue;<br />
}</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joseph Yumul</title>
		<link>http://www.uchobby.com/index.php/2009/01/19/using-adaptors-and-iphone-for-audio-breadboard-work/comment-page-1/#comment-1530</link>
		<dc:creator>Joseph Yumul</dc:creator>
		<pubDate>Wed, 21 Jan 2009 22:40:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.uchobby.com/?p=215#comment-1530</guid>
		<description>nice! :D</description>
		<content:encoded><![CDATA[<p>nice! <img src='http://www.uchobby.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Randall Bohn</title>
		<link>http://www.uchobby.com/index.php/2009/01/19/using-adaptors-and-iphone-for-audio-breadboard-work/comment-page-1/#comment-1529</link>
		<dc:creator>Randall Bohn</dc:creator>
		<pubDate>Wed, 21 Jan 2009 18:35:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.uchobby.com/?p=215#comment-1529</guid>
		<description>Is the stereo jack adapter going to be available for purchase from Curious Inventor? I&#039;d be willing to buy a few of those.</description>
		<content:encoded><![CDATA[<p>Is the stereo jack adapter going to be available for purchase from Curious Inventor? I&#8217;d be willing to buy a few of those.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Steve Chamberlin</title>
		<link>http://www.uchobby.com/index.php/2009/01/19/using-adaptors-and-iphone-for-audio-breadboard-work/comment-page-1/#comment-1528</link>
		<dc:creator>Steve Chamberlin</dc:creator>
		<pubDate>Wed, 21 Jan 2009 04:01:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.uchobby.com/?p=215#comment-1528</guid>
		<description>What a coincidence! I was just working on the audio amplifier output section of my own project, and ordered a TDA7052 from Mouser just last night, before I saw this posting. I got the TDA7052N variant without the DC volume control, instead of the TDA7052A. I wish I&#039;d read this first! I don&#039;t think it will be a big deal to attenuate the input signal rather than alter the gain, but we&#039;ll see.</description>
		<content:encoded><![CDATA[<p>What a coincidence! I was just working on the audio amplifier output section of my own project, and ordered a TDA7052 from Mouser just last night, before I saw this posting. I got the TDA7052N variant without the DC volume control, instead of the TDA7052A. I wish I&#8217;d read this first! I don&#8217;t think it will be a big deal to attenuate the input signal rather than alter the gain, but we&#8217;ll see.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Berni</title>
		<link>http://www.uchobby.com/index.php/2009/01/19/using-adaptors-and-iphone-for-audio-breadboard-work/comment-page-1/#comment-1527</link>
		<dc:creator>Berni</dc:creator>
		<pubDate>Tue, 20 Jan 2009 19:19:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.uchobby.com/?p=215#comment-1527</guid>
		<description>Well most audio amps simply decrese the input signal with a pot.

So you are planning any audio projects using a arduino  ? I found generating music on a MCU quite easy..</description>
		<content:encoded><![CDATA[<p>Well most audio amps simply decrese the input signal with a pot.</p>
<p>So you are planning any audio projects using a arduino  ? I found generating music on a MCU quite easy..</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Randall Bohn</title>
		<link>http://www.uchobby.com/index.php/2009/01/19/using-adaptors-and-iphone-for-audio-breadboard-work/comment-page-1/#comment-1526</link>
		<dc:creator>Randall Bohn</dc:creator>
		<pubDate>Tue, 20 Jan 2009 01:36:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.uchobby.com/?p=215#comment-1526</guid>
		<description>I spent all morning building a sidetone generator in Eagle. This is a two-transistor audio oscillator that is turned on and off with a telegraph key. About one hour putting the parts into the schematic, followed by four messing around with the board layout. That may sound like a real drag, but I had so much fun moving parts around and then re-running the auto-router I just couldn&#039;t stop. There were probably many points where I would have got a good enough board layout, but I just kept on going. I might have saved myself some time if I was more careful about adding the components to the board the first time around. I&#039;m sure as I keep designing boards I&#039;ll get better at it. I hope to get the board fabbed using BatchPCB.com later this year and eventually use it in my morse code tutor.</description>
		<content:encoded><![CDATA[<p>I spent all morning building a sidetone generator in Eagle. This is a two-transistor audio oscillator that is turned on and off with a telegraph key. About one hour putting the parts into the schematic, followed by four messing around with the board layout. That may sound like a real drag, but I had so much fun moving parts around and then re-running the auto-router I just couldn&#8217;t stop. There were probably many points where I would have got a good enough board layout, but I just kept on going. I might have saved myself some time if I was more careful about adding the components to the board the first time around. I&#8217;m sure as I keep designing boards I&#8217;ll get better at it. I hope to get the board fabbed using BatchPCB.com later this year and eventually use it in my morse code tutor.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

