void setup(){
  DDRB |= 0b00000100; // DDRD = DDRD | 0 x 04 
}

void loop() {
  PORTD |= 0x04;
  delay(200);
  PORTD &= !0x04;
  delay(200);
}