<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Prometheus Fusion Perfection &#187; Arduino</title>
	<atom:link href="http://prometheusfusionperfection.com/category/arduino/feed/" rel="self" type="application/rss+xml" />
	<link>http://prometheusfusionperfection.com</link>
	<description>Developing Clean, Cheap, Open Source Energy with the Bussard Reactor.</description>
	<lastBuildDate>Thu, 26 Jan 2012 17:02:37 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='prometheusfusionperfection.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Prometheus Fusion Perfection &#187; Arduino</title>
		<link>http://prometheusfusionperfection.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://prometheusfusionperfection.com/osd.xml" title="Prometheus Fusion Perfection" />
	<atom:link rel='hub' href='http://prometheusfusionperfection.com/?pushpress=hub'/>
		<item>
		<title>Arduino Controls 30,000 Volts</title>
		<link>http://prometheusfusionperfection.com/2011/09/10/arduino-controls-30000-volts/</link>
		<comments>http://prometheusfusionperfection.com/2011/09/10/arduino-controls-30000-volts/#comments</comments>
		<pubDate>Sun, 11 Sep 2011 01:07:55 +0000</pubDate>
		<dc:creator>Mark Suppes</dc:creator>
				<category><![CDATA[Arduino]]></category>
		<category><![CDATA[Electrical Engineering]]></category>
		<category><![CDATA[Electronics]]></category>
		<category><![CDATA[High Voltage]]></category>
		<category><![CDATA[Instrumentation]]></category>
		<category><![CDATA[Power Supply]]></category>

		<guid isPermaLink="false">http://prometheusfusionperfection.com/?p=3038</guid>
		<description><![CDATA[All photos. Today I made arduino control 30,000 volts. My arduino has 3 channels of analog output 0 to 5 volt. For testing I used this sin wave generator sketch: &#160; &#160; int pwmPin = 9; // output pin supporting PWM void setup(){ pinMode(pwmPin, OUTPUT); // sets the pin as output } void loop(){ float something = millis() [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=prometheusfusionperfection.com&amp;blog=5230661&amp;post=3038&amp;subd=prometheusfusionperfection&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="https://picasaweb.google.com/FAMULUS.fusion/20110910?authuser=0&amp;feat=directlink" target="_blank">All photos</a>.</p>
<p>Today I made <a href="http://en.wikipedia.org/wiki/Arduino" target="_blank">arduino</a> control 30,000 volts.</p>
<p>My arduino has 3 channels of analog output 0 to 5 volt.</p>
<p>For testing I used this sin wave generator sketch:</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<blockquote><p>int pwmPin = 9; // output pin supporting PWM</p>
<p>void setup(){</p>
<p>pinMode(pwmPin, OUTPUT); // sets the pin as output</p>
<p>}</p>
<p>void loop(){</p>
<p>float something = millis() / 1000.0;</p>
<p>int value = 127.5 + 127.5 * sin( something * 2.0 * PI );</p>
<p>analogWrite(pwmPin,value);</p>
<p>}</p>
<p>&nbsp;</p></blockquote>
<p>This generates a lazy 2 Hz sin wave.</p>
<p>But the output is not really analog, it&#8217;s <a href="http://en.wikipedia.org/wiki/Pulse-width_modulation" target="_blank">pulse width modulation</a>(PWM):</p>
<p><img class="alignnone" title="PWM output" src="https://lh5.googleusercontent.com/-5oYFhbaPWbc/TmwE2H4AclI/AAAAAAAANjA/Z05TR2Cxyso/s400/IMG_1866.JPG" alt="" width="400" height="300" /></p>
<p>This <a href="http://provideyourown.com/2011/analogwrite-convert-pwm-to-voltage/" target="_blank">tutorial shows how to smooth out  PWM</a> using a <a href="http://en.wikipedia.org/wiki/Low_pass_filter" target="_blank">low pass filter</a>. My low pass filter used 6kΩ resistor and 4.7 µF @ 45V capacitor.</p>
<p>Here we have the raw PWM output superimposed with the filtered output:</p>
<p><img class="alignnone" title="filtered PWM" src="https://lh5.googleusercontent.com/-OPj_kT8_pVs/TmwEyCNAyII/AAAAAAAANi8/DlRrzjXvccA/s400/IMG_1865.JPG" alt="" width="400" height="300" /></p>
<p>Looks good!</p>
<p>Now we just add the <a href="http://prometheusfusionperfection.com/2011/09/03/my-first-op-amp-circuit/" target="_blank">voltage doubling op-amp circuit I made previously</a>, and BOOM:</p>
<p><img class="alignnone" title="op amp voltage doubler" src="https://lh5.googleusercontent.com/-T1hVEgFc38M/Tmu1hspj6RI/AAAAAAAANhs/IhadLGET9RI/s400/IMG_1860.JPG" alt="" width="400" height="300" /></p>
<p>This shows the source signal and the voltage doubled signal.</p>
<p>Sweet! Now we can control the 30,000 volt glassman power supply.</p>
<p>Here the arduino is sending a slow sin wave to the glassman&#8217;s voltage control:</p>
<table style="width:auto;">
<tbody>
<tr>
<td><a href="https://picasaweb.google.com/lh/photo/HkRtWOxtdqqeaK84gaaUlw?feat=embedwebsite" target="_blank"><img src="https://lh3.googleusercontent.com/-rl5myM46SRw/Tmu_YMWrZ5I/AAAAAAAANiM/K9u9t1OSWoU/s288/MVI_1862.jpg" alt="" width="288" height="216" /></a></td>
</tr>
<tr>
<td style="font-family:arial,sans-serif;font-size:11px;text-align:right;">From <a href="https://picasaweb.google.com/FAMULUS.fusion/20110910?authuser=0&amp;feat=embedwebsite">2011-09-10</a></td>
</tr>
</tbody>
</table>
<p>The Glassman&#8217;s <a href="http://en.wikipedia.org/wiki/Slew_rate" target="_blank">slew rate</a> is really slow without a load.</p>
<p>Here is the setup:</p>
<p><img class="alignnone" title="arduino high voltage setup" src="https://lh4.googleusercontent.com/-yTWKTDmRlEo/Tmu37rCa5XI/AAAAAAAANh0/su9dyq99C_Q/s640/IMG_1861.JPG" alt="" width="640" height="480" /></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/prometheusfusionperfection.wordpress.com/3038/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/prometheusfusionperfection.wordpress.com/3038/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/prometheusfusionperfection.wordpress.com/3038/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/prometheusfusionperfection.wordpress.com/3038/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/prometheusfusionperfection.wordpress.com/3038/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/prometheusfusionperfection.wordpress.com/3038/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/prometheusfusionperfection.wordpress.com/3038/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/prometheusfusionperfection.wordpress.com/3038/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/prometheusfusionperfection.wordpress.com/3038/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/prometheusfusionperfection.wordpress.com/3038/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/prometheusfusionperfection.wordpress.com/3038/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/prometheusfusionperfection.wordpress.com/3038/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/prometheusfusionperfection.wordpress.com/3038/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/prometheusfusionperfection.wordpress.com/3038/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=prometheusfusionperfection.com&amp;blog=5230661&amp;post=3038&amp;subd=prometheusfusionperfection&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://prometheusfusionperfection.com/2011/09/10/arduino-controls-30000-volts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/509664fc2e4cf8454c22717aa9f3a64e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">FAMULUS</media:title>
		</media:content>

		<media:content url="https://lh5.googleusercontent.com/-5oYFhbaPWbc/TmwE2H4AclI/AAAAAAAANjA/Z05TR2Cxyso/s400/IMG_1866.JPG" medium="image">
			<media:title type="html">PWM output</media:title>
		</media:content>

		<media:content url="https://lh5.googleusercontent.com/-OPj_kT8_pVs/TmwEyCNAyII/AAAAAAAANi8/DlRrzjXvccA/s400/IMG_1865.JPG" medium="image">
			<media:title type="html">filtered PWM</media:title>
		</media:content>

		<media:content url="https://lh5.googleusercontent.com/-T1hVEgFc38M/Tmu1hspj6RI/AAAAAAAANhs/IhadLGET9RI/s400/IMG_1860.JPG" medium="image">
			<media:title type="html">op amp voltage doubler</media:title>
		</media:content>

		<media:content url="https://lh3.googleusercontent.com/-rl5myM46SRw/Tmu_YMWrZ5I/AAAAAAAANiM/K9u9t1OSWoU/s288/MVI_1862.jpg" medium="image" />

		<media:content url="https://lh4.googleusercontent.com/-yTWKTDmRlEo/Tmu37rCa5XI/AAAAAAAANh0/su9dyq99C_Q/s640/IMG_1861.JPG" medium="image">
			<media:title type="html">arduino high voltage setup</media:title>
		</media:content>
	</item>
		<item>
		<title>Wiring</title>
		<link>http://prometheusfusionperfection.com/2009/01/19/wiring/</link>
		<comments>http://prometheusfusionperfection.com/2009/01/19/wiring/#comments</comments>
		<pubDate>Sun, 18 Jan 2009 20:18:16 +0000</pubDate>
		<dc:creator>Mark Suppes</dc:creator>
				<category><![CDATA[Arduino]]></category>
		<category><![CDATA[reprap]]></category>
		<category><![CDATA[Sanguino]]></category>

		<guid isPermaLink="false">http://prometheusfusionperfection.wordpress.com/?p=419</guid>
		<description><![CDATA[Wade is helping me troubleshoot the wiring harness. I&#8217;m currently running from the Arduino, but the Sanguino is on hot standby. Here is a pic:  <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=prometheusfusionperfection.com&amp;blog=5230661&amp;post=419&amp;subd=prometheusfusionperfection&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://forums.reprap.org/profile.php?50,489" target="_blank">Wade</a> is helping me troubleshoot the wiring harness. I&#8217;m currently running from the Arduino, but the Sanguino is on hot standby. Here is a pic:</p>
<p> </p>
<p><img class="aligncenter size-full wp-image-421" title="wiring1" src="http://prometheusfusionperfection.files.wordpress.com/2009/01/wiring1.png?w=510" alt="wiring1"   /></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/prometheusfusionperfection.wordpress.com/419/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/prometheusfusionperfection.wordpress.com/419/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/prometheusfusionperfection.wordpress.com/419/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/prometheusfusionperfection.wordpress.com/419/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/prometheusfusionperfection.wordpress.com/419/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/prometheusfusionperfection.wordpress.com/419/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/prometheusfusionperfection.wordpress.com/419/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/prometheusfusionperfection.wordpress.com/419/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/prometheusfusionperfection.wordpress.com/419/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/prometheusfusionperfection.wordpress.com/419/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/prometheusfusionperfection.wordpress.com/419/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/prometheusfusionperfection.wordpress.com/419/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/prometheusfusionperfection.wordpress.com/419/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/prometheusfusionperfection.wordpress.com/419/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=prometheusfusionperfection.com&amp;blog=5230661&amp;post=419&amp;subd=prometheusfusionperfection&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://prometheusfusionperfection.com/2009/01/19/wiring/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/509664fc2e4cf8454c22717aa9f3a64e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">FAMULUS</media:title>
		</media:content>

		<media:content url="http://prometheusfusionperfection.files.wordpress.com/2009/01/wiring1.png" medium="image">
			<media:title type="html">wiring1</media:title>
		</media:content>
	</item>
		<item>
		<title>Reprap Frustrations</title>
		<link>http://prometheusfusionperfection.com/2009/01/19/reprap-frustrations/</link>
		<comments>http://prometheusfusionperfection.com/2009/01/19/reprap-frustrations/#comments</comments>
		<pubDate>Sun, 18 Jan 2009 17:47:58 +0000</pubDate>
		<dc:creator>Mark Suppes</dc:creator>
				<category><![CDATA[Arduino]]></category>
		<category><![CDATA[Gcode]]></category>
		<category><![CDATA[reprap]]></category>
		<category><![CDATA[Sanguino]]></category>

		<guid isPermaLink="false">http://prometheusfusionperfection.wordpress.com/?p=415</guid>
		<description><![CDATA[I&#8217;m having a tough time getting the Gcode firmware to work on either the Arduino or the Sanguino. The PDE files compile and upload properly, but when I issue a Gcode command through the serial connection, such as &#8220;G1 X10&#8243;:  it does not work, and I get this crazy response: ??Dóçb§bçÂçbççbç1???óçbçbçbçbçbçbçbç<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=prometheusfusionperfection.com&amp;blog=5230661&amp;post=415&amp;subd=prometheusfusionperfection&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m having a tough time getting the <a href="http://sourceforge.net/project/showfiles.php?group_id=159590&amp;package_id=256565&amp;release_id=602211" target="_blank">Gcode firmware</a> to work on either the <a href="http://en.wikipedia.org/wiki/Arduino" target="_blank">Arduino</a> or the <a href="http://sanguino.cc/" target="_blank">Sanguino</a>. The PDE files compile and upload properly, but when I issue a <a href="http://en.wikipedia.org/wiki/G-code" target="_blank">Gcode</a> command through the serial connection, such as &#8220;G1 X10&#8243;:  it does not work, and I get this crazy response:</p>
<tr>
<td>
<pre class="textmate-source">
<pre class="sunburst"><span class="meta meta_paragraph meta_paragraph_text">??Dóçb§bçÂçbççbç1???óçbçbçbçbçbçbçbç
</span></pre>
</pre>
</td>
</tr>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/prometheusfusionperfection.wordpress.com/415/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/prometheusfusionperfection.wordpress.com/415/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/prometheusfusionperfection.wordpress.com/415/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/prometheusfusionperfection.wordpress.com/415/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/prometheusfusionperfection.wordpress.com/415/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/prometheusfusionperfection.wordpress.com/415/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/prometheusfusionperfection.wordpress.com/415/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/prometheusfusionperfection.wordpress.com/415/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/prometheusfusionperfection.wordpress.com/415/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/prometheusfusionperfection.wordpress.com/415/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/prometheusfusionperfection.wordpress.com/415/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/prometheusfusionperfection.wordpress.com/415/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/prometheusfusionperfection.wordpress.com/415/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/prometheusfusionperfection.wordpress.com/415/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=prometheusfusionperfection.com&amp;blog=5230661&amp;post=415&amp;subd=prometheusfusionperfection&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://prometheusfusionperfection.com/2009/01/19/reprap-frustrations/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/509664fc2e4cf8454c22717aa9f3a64e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">FAMULUS</media:title>
		</media:content>
	</item>
	</channel>
</rss>
