<?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 for Evil Quark Labs</title>
	<atom:link href="http://evilquark.com/blog/?feed=comments-rss2" rel="self" type="application/rss+xml" />
	<link>http://evilquark.com/blog</link>
	<description>Figuring Stuff Out</description>
	<lastBuildDate>Sat, 07 Aug 2010 07:53:11 -0400</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on A Processing Java Applet in WordPress by angie</title>
		<link>http://evilquark.com/blog/?p=84&#038;cpage=1#comment-18</link>
		<dc:creator>angie</dc:creator>
		<pubDate>Sat, 07 Aug 2010 07:53:11 +0000</pubDate>
		<guid isPermaLink="false">http://evilquark.com/blog/?p=84#comment-18</guid>
		<description>Hi Kyle,

Think you could send or post the zip file?

Thanks!
Angie</description>
		<content:encoded><![CDATA[<p>Hi Kyle,</p>
<p>Think you could send or post the zip file?</p>
<p>Thanks!<br />
Angie</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Ohm meter using a Voltage Divider by ced</title>
		<link>http://evilquark.com/blog/?p=49&#038;cpage=1#comment-17</link>
		<dc:creator>ced</dc:creator>
		<pubDate>Wed, 04 Aug 2010 09:54:06 +0000</pubDate>
		<guid isPermaLink="false">http://evilquark.com/blog/?p=49#comment-17</guid>
		<description>hello I have make a modification in your code
ced


int aPinIn = 0;            // Analogue Input on Arduino
int val = 0;               // The raw analogue value
float Vout = 0.0;          // Voltage at point between resistors
                           // (relative to ground)
float Vin = 5.0;           // Vcc (5 Volts)
float Rknown = 10000.0;    // The known resistor (10 kohms)
float Runknown = 0.0;
float U = 0.0; 
float I = 0.0; 
 
void setup(){
 
  Serial.begin(9600);
  digitalWrite(13, HIGH);
 
}
 
void loop(){
 
  val = analogRead(aPinIn);              // Read in val (0-1023)
  Vout = (Vin/1024.0) * float(val);      // Convert to voltage
  U = Vin - Vout;
  I = (U/Rknown);
  Runknown = (Vout/I);
 // Runknown = Rknown*((Vin/Vout) - 1);    // Calculate Runknown
 
  Serial.print(&quot;Vout: &quot;);
  Serial.println(Vout);                  // Output everything
  Serial.print(&quot;R: &quot;);
  Serial.println(Runknown);
 
  delay(1000);                           // delay for readability
 
}</description>
		<content:encoded><![CDATA[<p>hello I have make a modification in your code<br />
ced</p>
<p>int aPinIn = 0;            // Analogue Input on Arduino<br />
int val = 0;               // The raw analogue value<br />
float Vout = 0.0;          // Voltage at point between resistors<br />
                           // (relative to ground)<br />
float Vin = 5.0;           // Vcc (5 Volts)<br />
float Rknown = 10000.0;    // The known resistor (10 kohms)<br />
float Runknown = 0.0;<br />
float U = 0.0;<br />
float I = 0.0; </p>
<p>void setup(){</p>
<p>  Serial.begin(9600);<br />
  digitalWrite(13, HIGH);</p>
<p>}</p>
<p>void loop(){</p>
<p>  val = analogRead(aPinIn);              // Read in val (0-1023)<br />
  Vout = (Vin/1024.0) * float(val);      // Convert to voltage<br />
  U = Vin &#8211; Vout;<br />
  I = (U/Rknown);<br />
  Runknown = (Vout/I);<br />
 // Runknown = Rknown*((Vin/Vout) &#8211; 1);    // Calculate Runknown</p>
<p>  Serial.print(&#8221;Vout: &#8220;);<br />
  Serial.println(Vout);                  // Output everything<br />
  Serial.print(&#8221;R: &#8220;);<br />
  Serial.println(Runknown);</p>
<p>  delay(1000);                           // delay for readability</p>
<p>}</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on A Processing Java Applet in WordPress by hafiz</title>
		<link>http://evilquark.com/blog/?p=84&#038;cpage=1#comment-16</link>
		<dc:creator>hafiz</dc:creator>
		<pubDate>Tue, 27 Jul 2010 14:17:46 +0000</pubDate>
		<guid isPermaLink="false">http://evilquark.com/blog/?p=84#comment-16</guid>
		<description>I can&#039;t get it to work on wp 3.0. Hope you can assist me with this. Drop me an email when you&#039;re free

Cheers,
Hafiz</description>
		<content:encoded><![CDATA[<p>I can&#8217;t get it to work on wp 3.0. Hope you can assist me with this. Drop me an email when you&#8217;re free</p>
<p>Cheers,<br />
Hafiz</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on A Processing Java Applet in WordPress by Philipp</title>
		<link>http://evilquark.com/blog/?p=84&#038;cpage=1#comment-15</link>
		<dc:creator>Philipp</dc:creator>
		<pubDate>Fri, 06 Nov 2009 17:51:29 +0000</pubDate>
		<guid isPermaLink="false">http://evilquark.com/blog/?p=84#comment-15</guid>
		<description>hey kyle,
thanks for this nice plugin!
i used to have some problems with this plugin and libraries.
i just added a few lines to your code to make it work.
i couldn&#039;t find your mail address. so just write me a mail and i can sent my file to you.</description>
		<content:encoded><![CDATA[<p>hey kyle,<br />
thanks for this nice plugin!<br />
i used to have some problems with this plugin and libraries.<br />
i just added a few lines to your code to make it work.<br />
i couldn&#8217;t find your mail address. so just write me a mail and i can sent my file to you.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on A Processing Java Applet in WordPress by luisa</title>
		<link>http://evilquark.com/blog/?p=84&#038;cpage=1#comment-11</link>
		<dc:creator>luisa</dc:creator>
		<pubDate>Thu, 15 Oct 2009 17:02:11 +0000</pubDate>
		<guid isPermaLink="false">http://evilquark.com/blog/?p=84#comment-11</guid>
		<description>thanks, you made my day! I had managed to get this to work in Wordpress 2.6 but it broke when I upgraded and I was about to give up for today...</description>
		<content:encoded><![CDATA[<p>thanks, you made my day! I had managed to get this to work in Wordpress 2.6 but it broke when I upgraded and I was about to give up for today&#8230;</p>
]]></content:encoded>
	</item>
</channel>
</rss>
