void setup() {

  DDRB = 0xff;
  PORTB = 0x00;
}

void loop() {
 
  PORTB++;
  delay(1000);
}