#define LED_PIN 12 void setup() { pinMode(LED_PIN, OUTPUT); digitalWrite(LED_PIN, HIGH); } void loop() {}