#define LED_PIN 2
void setup() {
// put your setup code here, to run once:
Serial.begin(115200);
Serial.println("Hello World!");
// Initialize the LED pin as an output
pinMode(LED_PIN, OUTPUT);
// Turn the LED ON by setting the pin HIGH
digitalWrite(LED_PIN, LOW);
}
void loop() {
// put your main code here, to run repeatedly:
delay(10); // this speeds up the simulation
}