int redPin=7;

void setup() {
  // put your setup code here, to run once:
pinMode(redPin, OUTPUT);
}

void loop() {
  // put your main code here, to run repeatedly:
digitalWrite(redPin, HIGH);

delay(1000);

digitalWrite(redPin, LOW);

delay(1000);
}
$abcdeabcde151015202530fghijfghij