mirror of
https://github.com/Architeuthis-Flux/JumperlessV5.git
synced 2025-09-07 11:17:58 +00:00
16 lines
306 B
C++
16 lines
306 B
C++
void setup() {
|
|
// put your setup code here, to run once:
|
|
pinMode(LED_BUILTIN, OUTPUT);
|
|
Serial.begin(115200);
|
|
delay(800);
|
|
|
|
}
|
|
|
|
void loop() {
|
|
// put your main code here, to run repeatedly:
|
|
digitalWrite(LED_BUILTIN, HIGH);
|
|
Serial.print("fuck\n\r");
|
|
delay(240);
|
|
digitalWrite(LED_BUILTIN, LOW);
|
|
delay(200);
|
|
} |