<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://old.hacdc.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Jamestford</id>
	<title>HacDC Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://old.hacdc.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Jamestford"/>
	<link rel="alternate" type="text/html" href="https://old.hacdc.org/index.php/Special:Contributions/Jamestford"/>
	<updated>2026-05-07T14:03:29Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.39.3</generator>
	<entry>
		<id>https://old.hacdc.org/index.php?title=Talk:Avr2011_Programming_The_Kit&amp;diff=4762</id>
		<title>Talk:Avr2011 Programming The Kit</title>
		<link rel="alternate" type="text/html" href="https://old.hacdc.org/index.php?title=Talk:Avr2011_Programming_The_Kit&amp;diff=4762"/>
		<updated>2011-03-12T23:45:55Z</updated>

		<summary type="html">&lt;p&gt;Jamestford: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;I find it helpful to flash the chip with a simple program to turn on all LED&#039;s just to ensure all of your LED&#039;s work before moving on just in case you put an LED in backwards.&lt;br /&gt;
&lt;br /&gt;
Light Em&#039; Up Program&lt;br /&gt;
&lt;br /&gt;
 #include &amp;lt;avr/io.h&amp;gt; /* AVR library to define pins, ports, etc */&lt;br /&gt;
 int main(void)&lt;br /&gt;
 {&lt;br /&gt;
 	DDRB = 0xff;  //Set port B pins as all outputs&lt;br /&gt;
 	PORTB = 0xff; //Set all Port B pins as High&lt;br /&gt;
 	return 1;&lt;br /&gt;
 }&lt;/div&gt;</summary>
		<author><name>Jamestford</name></author>
	</entry>
	<entry>
		<id>https://old.hacdc.org/index.php?title=Talk:Avr2011_Programming_The_Kit&amp;diff=4761</id>
		<title>Talk:Avr2011 Programming The Kit</title>
		<link rel="alternate" type="text/html" href="https://old.hacdc.org/index.php?title=Talk:Avr2011_Programming_The_Kit&amp;diff=4761"/>
		<updated>2011-03-12T23:15:48Z</updated>

		<summary type="html">&lt;p&gt;Jamestford: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;I find it helpful to flash the chip with a simple program to turn on all LED&#039;s just to ensure all of your LED&#039;s work before moving on just in case you put an LED in backwards.&lt;br /&gt;
&lt;br /&gt;
Light Em&#039; Up Program&lt;br /&gt;
&lt;br /&gt;
 #include &amp;lt;avr/io.h&amp;gt;		&lt;br /&gt;
 void main(void){&lt;br /&gt;
  DDRB = 0b11111111;&lt;br /&gt;
  while(1){&lt;br /&gt;
    PORTB = 0b11111111;&lt;br /&gt;
  }  &lt;br /&gt;
 }&lt;/div&gt;</summary>
		<author><name>Jamestford</name></author>
	</entry>
	<entry>
		<id>https://old.hacdc.org/index.php?title=Talk:Avr2011_Programming_The_Kit&amp;diff=4755</id>
		<title>Talk:Avr2011 Programming The Kit</title>
		<link rel="alternate" type="text/html" href="https://old.hacdc.org/index.php?title=Talk:Avr2011_Programming_The_Kit&amp;diff=4755"/>
		<updated>2011-03-12T06:14:17Z</updated>

		<summary type="html">&lt;p&gt;Jamestford: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;I find it helpful to flash the chip with a simple program to turn on all LED&#039;s just to ensure all of your LED&#039;s work before moving on just in case you put an LED in backwards.&lt;br /&gt;
&lt;br /&gt;
Light Em&#039; Up Program&lt;br /&gt;
&lt;br /&gt;
 #include &amp;lt;avr/io.h&amp;gt;		&lt;br /&gt;
 #define F_CPU 8000000UL	      &lt;br /&gt;
 #include &amp;lt;util/delay.h&amp;gt;&lt;br /&gt;
 &lt;br /&gt;
 void main(void){&lt;br /&gt;
  DDRB = 0b11111111;&lt;br /&gt;
 &lt;br /&gt;
  while(1){&lt;br /&gt;
    PORTB = 0b11111111;&lt;br /&gt;
  }  &lt;br /&gt;
 }&lt;/div&gt;</summary>
		<author><name>Jamestford</name></author>
	</entry>
	<entry>
		<id>https://old.hacdc.org/index.php?title=Talk:Avr2011_Programming_The_Kit&amp;diff=4754</id>
		<title>Talk:Avr2011 Programming The Kit</title>
		<link rel="alternate" type="text/html" href="https://old.hacdc.org/index.php?title=Talk:Avr2011_Programming_The_Kit&amp;diff=4754"/>
		<updated>2011-03-12T06:14:01Z</updated>

		<summary type="html">&lt;p&gt;Jamestford: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;I find it helpful to flash the chip with a simple program to turn on all LED&#039;s just to ensure all of your LED&#039;s work before moving on just in case you put an LED in backwards.&lt;br /&gt;
&lt;br /&gt;
Light Em&#039; Up Program&lt;br /&gt;
&lt;br /&gt;
 #include &amp;lt;avr/io.h&amp;gt;		&lt;br /&gt;
 #define F_CPU 8000000UL	      &lt;br /&gt;
 #include &amp;lt;util/delay.h&amp;gt;&lt;br /&gt;
&lt;br /&gt;
 void main(void){&lt;br /&gt;
  DDRB = 0b11111111;&lt;br /&gt;
&lt;br /&gt;
  while(1){&lt;br /&gt;
    PORTB = 0b11111111;&lt;br /&gt;
  }  &lt;br /&gt;
 }&lt;/div&gt;</summary>
		<author><name>Jamestford</name></author>
	</entry>
	<entry>
		<id>https://old.hacdc.org/index.php?title=Talk:Avr2011_Programming_The_Kit&amp;diff=4753</id>
		<title>Talk:Avr2011 Programming The Kit</title>
		<link rel="alternate" type="text/html" href="https://old.hacdc.org/index.php?title=Talk:Avr2011_Programming_The_Kit&amp;diff=4753"/>
		<updated>2011-03-12T06:13:34Z</updated>

		<summary type="html">&lt;p&gt;Jamestford: Verify All LED&amp;#039;s Working&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;I find it helpful to flash the chip with a simple program to turn on all LED&#039;s just to ensure all of your LED&#039;s work before moving on just in case you put an LED in backwards.&lt;br /&gt;
&lt;br /&gt;
Light Em&#039; Up Program&lt;br /&gt;
&lt;br /&gt;
#include &amp;lt;avr/io.h&amp;gt;		&lt;br /&gt;
#define F_CPU 8000000UL	      &lt;br /&gt;
#include &amp;lt;util/delay.h&amp;gt;&lt;br /&gt;
&lt;br /&gt;
void main(void){&lt;br /&gt;
  DDRB = 0b11111111;&lt;br /&gt;
&lt;br /&gt;
  while(1){&lt;br /&gt;
    PORTB = 0b11111111;&lt;br /&gt;
  }  &lt;br /&gt;
}&lt;/div&gt;</summary>
		<author><name>Jamestford</name></author>
	</entry>
	<entry>
		<id>https://old.hacdc.org/index.php?title=Talk:AVR_Microcontroller_Class_2011&amp;diff=4752</id>
		<title>Talk:AVR Microcontroller Class 2011</title>
		<link rel="alternate" type="text/html" href="https://old.hacdc.org/index.php?title=Talk:AVR_Microcontroller_Class_2011&amp;diff=4752"/>
		<updated>2011-03-12T06:08:11Z</updated>

		<summary type="html">&lt;p&gt;Jamestford: Resistor / Ohm Tutorial&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;I had a really tough time wrapping my head around the resistors and how you figure out which one to use and ran across this tutorial which was extremely helpful.  http://vimeo.com/15395291&lt;/div&gt;</summary>
		<author><name>Jamestford</name></author>
	</entry>
</feed>