void setup() {
// Set pin 13 as an output (for the built-in LED)
pinMode(13, OUTPUT);
// Turn on the built-in LED by setting pin 13 to HIGH
digitalWrite(13, HIGH);
}
void loop() {
// No need to do anything in the loop for this example
}
void setup() {
// Set pin 13 as an output (for the built-in LED)
pinMode(13, OUTPUT);
// Turn on the built-in LED by setting pin 13 to HIGH
digitalWrite(13, HIGH);
}
void loop() {
// No need to do anything in the loop for this example
}