mirror of
https://github.com/Architeuthis-Flux/Jumperless.git
synced 2024-12-20 19:25:54 +01:00
14 lines
247 B
C++
14 lines
247 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(300);
|
|
|
|
digitalWrite(LED_BUILTIN, LOW);
|
|
delay(100);
|
|
}
|