mirror of
https://github.com/Architeuthis-Flux/Jumperless.git
synced 2024-12-21 03:35:54 +01:00
17 lines
251 B
Arduino
17 lines
251 B
Arduino
|
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);
|
||
|
}
|