mirror of
https://github.com/Architeuthis-Flux/JumperlessV5.git
synced 2025-09-07 11:17:58 +00:00
19 lines
477 B
C++
19 lines
477 B
C++
// Example Arduino sketch for Jumperless local file monitoring
|
|
// Save this file and assign it to a slot to test automatic flashing
|
|
|
|
void setup() {
|
|
Serial.begin(115200);
|
|
pinMode(LED_BUILTIN, OUTPUT);
|
|
delay(1000);
|
|
Serial.println("Local file monitoring test - setup complete!");
|
|
}
|
|
|
|
void loop() {
|
|
// Blink the built-in LED
|
|
digitalWrite(LED_BUILTIN, HIGH);
|
|
delay(2000);
|
|
digitalWrite(LED_BUILTIN, LOW);
|
|
delay(100);
|
|
|
|
Serial.println("Hello from local file!");
|
|
}
|