<?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"
	>
<channel>
	<title>Comments on: EasyPic4 First Impressions</title>
	<atom:link href="http://scott.sherrillmix.com/blog/programmer/easypic4-first-impressions/feed/" rel="self" type="application/rss+xml" />
	<link>http://scott.sherrillmix.com/blog/programmer/easypic4-first-impressions/</link>
	<description>I'm a biologist not a...</description>
	<pubDate>Mon, 08 Sep 2008 05:53:51 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6</generator>
		<item>
		<title>By: Interesting Links (08-01-23) :: Dammit Jim!</title>
		<link>http://scott.sherrillmix.com/blog/programmer/easypic4-first-impressions/#comment-27760</link>
		<dc:creator>Interesting Links (08-01-23) :: Dammit Jim!</dc:creator>
		<pubDate>Thu, 24 Jan 2008 04:58:54 +0000</pubDate>
		<guid isPermaLink="false">http://scott.sherrillmix.com/blog/programmer/easypic4-first-impressions/#comment-27760</guid>
		<description>[...] NerdKitsA nice idea by a couple college students to sell kits for learning how to use microcontrollers. They &#8220;guarantee that you&#8217;ll get your first program written and running&#8221;. Unfortunately they don&#8217;t have a USB version yet. Sort of a homegrown alternative to EasyPic4. [...]</description>
		<content:encoded><![CDATA[<p>[...] NerdKitsA nice idea by a couple college students to sell kits for learning how to use microcontrollers. They &#8220;guarantee that you&#8217;ll get your first program written and running&#8221;. Unfortunately they don&#8217;t have a USB version yet. Sort of a homegrown alternative to EasyPic4. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ScottS-M</title>
		<link>http://scott.sherrillmix.com/blog/programmer/easypic4-first-impressions/#comment-11915</link>
		<dc:creator>ScottS-M</dc:creator>
		<pubDate>Fri, 05 Oct 2007 06:38:09 +0000</pubDate>
		<guid isPermaLink="false">http://scott.sherrillmix.com/blog/programmer/easypic4-first-impressions/#comment-11915</guid>
		<description>@vincent
Thanks I'll have to take a look at PICAXE too when I get a chance.</description>
		<content:encoded><![CDATA[<p>@vincent<br />
Thanks I&#8217;ll have to take a look at PICAXE too when I get a chance.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: vincent hua</title>
		<link>http://scott.sherrillmix.com/blog/programmer/easypic4-first-impressions/#comment-11639</link>
		<dc:creator>vincent hua</dc:creator>
		<pubDate>Mon, 01 Oct 2007 23:31:36 +0000</pubDate>
		<guid isPermaLink="false">http://scott.sherrillmix.com/blog/programmer/easypic4-first-impressions/#comment-11639</guid>
		<description>Try PICAXE. It's much cheaper and low learning curve..  :)</description>
		<content:encoded><![CDATA[<p>Try PICAXE. It&#8217;s much cheaper and low learning curve..  :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ScottS-M</title>
		<link>http://scott.sherrillmix.com/blog/programmer/easypic4-first-impressions/#comment-10655</link>
		<dc:creator>ScottS-M</dc:creator>
		<pubDate>Thu, 20 Sep 2007 18:09:08 +0000</pubDate>
		<guid isPermaLink="false">http://scott.sherrillmix.com/blog/programmer/easypic4-first-impressions/#comment-10655</guid>
		<description>@HArdik
Sorry this took a while. I've been traveling. The EasyPic4 comes with a &lt;a href="http://www.mikroe.com/zip/easypic4/easypic4_mikroc_examples.zip" rel="nofollow"&gt;bunch of example programs&lt;/a&gt;.

Here's an example out of that file (they have several more examples for the 7 segment display).

Let me know if I didn't answer your question.

&lt;code&gt;#include &#34;Display_utils.h&#34;

unsigned short i;

void main() {
  INTCON = 0;                    // Disable PEIE,INTE,RBIE,T0IE
  PORTA  = 0;
  TRISA  = 0;
  PORTD  = 0;
  TRISD  = 0;
  do {
    for (i = 0; i&#60;=9u; i++) {
      PORTA = 0;
      PORTD = mask(i);
      PORTA = 2;
      Delay_ms(1000);
    }
  } while (1);                   //endless loop
}//~!
&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>@HArdik<br />
Sorry this took a while. I&#8217;ve been traveling. The EasyPic4 comes with a <a href="http://www.mikroe.com/zip/easypic4/easypic4_mikroc_examples.zip" rel="nofollow">bunch of example programs</a>.</p>
<p>Here&#8217;s an example out of that file (they have several more examples for the 7 segment display).</p>
<p>Let me know if I didn&#8217;t answer your question.</p>
<p><code>#include &quot;Display_utils.h&quot;</p>
<p>unsigned short i;</p>
<p>void main() {<br />
  INTCON = 0;                    // Disable PEIE,INTE,RBIE,T0IE<br />
  PORTA  = 0;<br />
  TRISA  = 0;<br />
  PORTD  = 0;<br />
  TRISD  = 0;<br />
  do {<br />
    for (i = 0; i&lt;=9u; i++) {<br />
      PORTA = 0;<br />
      PORTD = mask(i);<br />
      PORTA = 2;<br />
      Delay_ms(1000);<br />
    }<br />
  } while (1);                   //endless loop<br />
}//~!<br />
</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: HArdik</title>
		<link>http://scott.sherrillmix.com/blog/programmer/easypic4-first-impressions/#comment-10153</link>
		<dc:creator>HArdik</dc:creator>
		<pubDate>Fri, 14 Sep 2007 17:54:53 +0000</pubDate>
		<guid isPermaLink="false">http://scott.sherrillmix.com/blog/programmer/easypic4-first-impressions/#comment-10153</guid>
		<description>can u send some program related to 7segment LED,LCD?</description>
		<content:encoded><![CDATA[<p>can u send some program related to 7segment LED,LCD?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.211 seconds -->
