Programa 1

void setup() {
  pinMode(6,OUTPUT);
}

void loop() {
  digitalWrite(6,HIGH);
  delay(500);
  digitalWrite(6,LOW);
  delay(500);
  
}