#define setPin 4
void setup() {
  DDRA |= (1<<setPin);
}

void loop() {
  PORTA= 0x10;
  delay(500);
  PORTA= 0x00;
  delay(500);
}