overexposed
Acroholic
and another interesting shield
http://www.liquidware.com/shop/show/TEX/TripleWide+ExtenderShield+X
This is very very cool!
and another interesting shield
http://www.liquidware.com/shop/show/TEX/TripleWide+ExtenderShield+X
This is very very cool!
I pre-loaded the atmega328 with a sketch that blinks all the pins on and off to test them all with a simple led. Nick D.
void setup(){
pinMode(0,OUTPUT);
pinMode(1,OUTPUT);
//Do this for pin 0-13 and A0-A5
}
void loop(){
digitalWrite(0,HIGH); //Do this for each of the pins.
delay(500);
digitalWrite(0, LOW); //Do this for each pin.
delay(500);
}