#define LED 12
void setup() {
// put your setup code here, to run once:
pinMode(LED, OUTPUT);
Serial.begin(115200);
}
void loop() {
// put your main code here, to run repeatedly:
// this speeds up the simulation
digitalWrite(LED, true);
delay(500);
digitalWrite(LED, false);
delay(500);
}