#define LED_PIN 23
void setup() {
pinMode(LED_PIN, OUTPUT);
}
void loop() {
// put your main code here, to run repeatedly:
digitalWrite(LED_PIN, HIGH);
delay(150); // this speeds up the simulation
digitalWrite(LED_PIN,LOW);
delay(1000);
}