void setup() {
  DDRD = bit(3) | bit(6);
  PIND |= bit(3) | bit(6);
}

void loop() {
  delay(1000);
  PIND |= bit(6);
}