mirror of
https://github.com/Architeuthis-Flux/Jumperless.git
synced 2024-12-22 04:05:52 +01:00
18 lines
158 B
C++
18 lines
158 B
C++
|
|
|
|
|
|
void setup(){
|
|
|
|
pinMode(2, OUTPUT);
|
|
digitalWrite(2, HIGH);
|
|
|
|
}
|
|
|
|
void loop(){
|
|
|
|
digitalWrite(2, HIGH);
|
|
delay(400);
|
|
digitalWrite(2, LOW);
|
|
delay(300);
|
|
|
|
} |