mirror of
https://github.com/Architeuthis-Flux/Jumperless.git
synced 2024-12-02 19:17:18 +01:00
17 lines
251 B
C++
17 lines
251 B
C++
void setup() {
|
|
// put your setup code here, to run once:
|
|
pinMode(LED_BUILTIN, OUTPUT);
|
|
|
|
}
|
|
|
|
void loop() {
|
|
// put your main code here, to run repeatedly:
|
|
|
|
|
|
digitalWrite(LED_BUILTIN, HIGH);
|
|
delay(2600);
|
|
digitalWrite(LED_BUILTIN, LOW);
|
|
|
|
delay(400);
|
|
}
|