void setup() {
// put your setup code here, to run once:
DDRD =B00001111; //set PORTD to output
}
void loop() {
for(byte i=0; i<16; i++) {
PORTD = i;
delay(250);
}
}
void setup() {
// put your setup code here, to run once:
DDRD =B00001111; //set PORTD to output
}
void loop() {
for(byte i=0; i<16; i++) {
PORTD = i;
delay(250);
}
}