<?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: gmail notifier project (for dummies)</title>
	<atom:link href="http://blog.tinyenormous.com/2008/11/25/gmail-notifier-project-for-dummies/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.tinyenormous.com/2008/11/25/gmail-notifier-project-for-dummies/</link>
	<description>arduino, robots, cameras, and life</description>
	<lastBuildDate>Sun, 05 Sep 2010 15:56:02 -0700</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>By: TinyEnormous</title>
		<link>http://blog.tinyenormous.com/2008/11/25/gmail-notifier-project-for-dummies/comment-page-1/#comment-1677</link>
		<dc:creator>TinyEnormous</dc:creator>
		<pubDate>Thu, 29 Jul 2010 20:28:32 +0000</pubDate>
		<guid isPermaLink="false">http://blog.tinyenormous.com/?p=175#comment-1677</guid>
		<description>&lt;a href=&quot;#comment-1674&quot; rel=&quot;nofollow&quot;&gt;@James B&lt;/a&gt; 
Sure thing James. It ought to be fixed now. Sorry about that!</description>
		<content:encoded><![CDATA[<p><a href="#comment-1674" rel="nofollow">@James B</a><br />
Sure thing James. It ought to be fixed now. Sorry about that!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: James B</title>
		<link>http://blog.tinyenormous.com/2008/11/25/gmail-notifier-project-for-dummies/comment-page-1/#comment-1674</link>
		<dc:creator>James B</dc:creator>
		<pubDate>Thu, 29 Jul 2010 02:45:07 +0000</pubDate>
		<guid isPermaLink="false">http://blog.tinyenormous.com/?p=175#comment-1674</guid>
		<description>I have just tried to download the zip file but it ain&#039;t there :( Any chance of resorting the info please?</description>
		<content:encoded><![CDATA[<p>I have just tried to download the zip file but it ain&#8217;t there :( Any chance of resorting the info please?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: TinyEnormous</title>
		<link>http://blog.tinyenormous.com/2008/11/25/gmail-notifier-project-for-dummies/comment-page-1/#comment-1259</link>
		<dc:creator>TinyEnormous</dc:creator>
		<pubDate>Mon, 23 Nov 2009 17:04:48 +0000</pubDate>
		<guid isPermaLink="false">http://blog.tinyenormous.com/?p=175#comment-1259</guid>
		<description>One last thing Bradley - You might want to make the loop conditional on the arduino being plugged in. instead of a &#039;for&#039; loop that would be a &#039;while&#039; loop. Google python loops for more info.</description>
		<content:encoded><![CDATA[<p>One last thing Bradley &#8211; You might want to make the loop conditional on the arduino being plugged in. instead of a &#8216;for&#8217; loop that would be a &#8216;while&#8217; loop. Google python loops for more info.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: TinyEnormous</title>
		<link>http://blog.tinyenormous.com/2008/11/25/gmail-notifier-project-for-dummies/comment-page-1/#comment-1258</link>
		<dc:creator>TinyEnormous</dc:creator>
		<pubDate>Mon, 23 Nov 2009 16:55:15 +0000</pubDate>
		<guid isPermaLink="false">http://blog.tinyenormous.com/?p=175#comment-1258</guid>
		<description>Bradley -

&quot;do i have to have the arduino software/app to make the board take in the information when the python program works?&quot;

no. you don&#039;t. It could even complicate matters.</description>
		<content:encoded><![CDATA[<p>Bradley -</p>
<p>&#8220;do i have to have the arduino software/app to make the board take in the information when the python program works?&#8221;</p>
<p>no. you don&#8217;t. It could even complicate matters.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: TinyEnormous</title>
		<link>http://blog.tinyenormous.com/2008/11/25/gmail-notifier-project-for-dummies/comment-page-1/#comment-1257</link>
		<dc:creator>TinyEnormous</dc:creator>
		<pubDate>Mon, 23 Nov 2009 16:53:30 +0000</pubDate>
		<guid isPermaLink="false">http://blog.tinyenormous.com/?p=175#comment-1257</guid>
		<description>Bradley - what I did to loop it was a simple for loop.

for i in range(1, 5):
	//put your code here

Change the 5 to the number of times you want it to loop. I did it this way because it&#039;s an easy way to keep it from being an infinite loop. -&gt; there definitely are better ways to do this, but this will work.</description>
		<content:encoded><![CDATA[<p>Bradley &#8211; what I did to loop it was a simple for loop.</p>
<p>for i in range(1, 5):<br />
	//put your code here</p>
<p>Change the 5 to the number of times you want it to loop. I did it this way because it&#8217;s an easy way to keep it from being an infinite loop. -> there definitely are better ways to do this, but this will work.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bradley86</title>
		<link>http://blog.tinyenormous.com/2008/11/25/gmail-notifier-project-for-dummies/comment-page-1/#comment-1244</link>
		<dc:creator>Bradley86</dc:creator>
		<pubDate>Sun, 22 Nov 2009 16:41:28 +0000</pubDate>
		<guid isPermaLink="false">http://blog.tinyenormous.com/?p=175#comment-1244</guid>
		<description>ah i guess thats what you meant by don&#039;t use the plist. so i am trying to figure out a nice way to run the python in a loop.</description>
		<content:encoded><![CDATA[<p>ah i guess thats what you meant by don&#8217;t use the plist. so i am trying to figure out a nice way to run the python in a loop.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bradley86</title>
		<link>http://blog.tinyenormous.com/2008/11/25/gmail-notifier-project-for-dummies/comment-page-1/#comment-1243</link>
		<dc:creator>Bradley86</dc:creator>
		<pubDate>Sun, 22 Nov 2009 16:21:53 +0000</pubDate>
		<guid isPermaLink="false">http://blog.tinyenormous.com/?p=175#comment-1243</guid>
		<description>okay again i just figured it out. so now it talks to the arduino and lights up when i run the program via terminal. 

however i have some simple questions. do i have to have the arduino software/app to make the board take in the information when the python program works?</description>
		<content:encoded><![CDATA[<p>okay again i just figured it out. so now it talks to the arduino and lights up when i run the program via terminal. </p>
<p>however i have some simple questions. do i have to have the arduino software/app to make the board take in the information when the python program works?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bradley86</title>
		<link>http://blog.tinyenormous.com/2008/11/25/gmail-notifier-project-for-dummies/comment-page-1/#comment-1242</link>
		<dc:creator>Bradley86</dc:creator>
		<pubDate>Sun, 22 Nov 2009 16:15:43 +0000</pubDate>
		<guid isPermaLink="false">http://blog.tinyenormous.com/?p=175#comment-1242</guid>
		<description>ok so i got it to recognize the serial port. but its not sending the information to the board for it to light up.</description>
		<content:encoded><![CDATA[<p>ok so i got it to recognize the serial port. but its not sending the information to the board for it to light up.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bradley86</title>
		<link>http://blog.tinyenormous.com/2008/11/25/gmail-notifier-project-for-dummies/comment-page-1/#comment-1241</link>
		<dc:creator>Bradley86</dc:creator>
		<pubDate>Sun, 22 Nov 2009 15:57:36 +0000</pubDate>
		<guid isPermaLink="false">http://blog.tinyenormous.com/?p=175#comment-1241</guid>
		<description>SO i have great news.... and one bad news....

great news:

so i was able to test the python connecting to my gmail account and it does work now. whenever i tell it to run the program to see if it has mail or not, python will print &quot;some mail&quot; or &quot; no mail&quot;.

also testing the arduino board was a success as well. when i type in &quot;m&quot; in the serial monitor the led will light up, when i type in &quot;n&quot; in the serial monitor the led will turn off. 

bad news:
the bad news is that when i run the program it in terminal with everything uncommented, it will say no device connected. 

i have the serial port written write in the py code with the right baud, however i don&#039;t understand why it won&#039;t communicate and find the port. 

do u have any suggestions?</description>
		<content:encoded><![CDATA[<p>SO i have great news&#8230;. and one bad news&#8230;.</p>
<p>great news:</p>
<p>so i was able to test the python connecting to my gmail account and it does work now. whenever i tell it to run the program to see if it has mail or not, python will print &#8220;some mail&#8221; or &#8221; no mail&#8221;.</p>
<p>also testing the arduino board was a success as well. when i type in &#8220;m&#8221; in the serial monitor the led will light up, when i type in &#8220;n&#8221; in the serial monitor the led will turn off. </p>
<p>bad news:<br />
the bad news is that when i run the program it in terminal with everything uncommented, it will say no device connected. </p>
<p>i have the serial port written write in the py code with the right baud, however i don&#8217;t understand why it won&#8217;t communicate and find the port. </p>
<p>do u have any suggestions?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bradley86</title>
		<link>http://blog.tinyenormous.com/2008/11/25/gmail-notifier-project-for-dummies/comment-page-1/#comment-1226</link>
		<dc:creator>Bradley86</dc:creator>
		<pubDate>Sat, 21 Nov 2009 02:38:05 +0000</pubDate>
		<guid isPermaLink="false">http://blog.tinyenormous.com/?p=175#comment-1226</guid>
		<description>wait wait i&#039;m lost now. so what exactly is all the prerequisites to getting thru the python setup?</description>
		<content:encoded><![CDATA[<p>wait wait i&#8217;m lost now. so what exactly is all the prerequisites to getting thru the python setup?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
