From 9ace9ffb242d2075f1af6076c0845c7cb7ac732f Mon Sep 17 00:00:00 2001 From: Felix Pankratz Date: Tue, 12 Nov 2024 20:04:49 +0100 Subject: [PATCH] clean up old file --- src/blink.cpp.bak | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 src/blink.cpp.bak diff --git a/src/blink.cpp.bak b/src/blink.cpp.bak deleted file mode 100644 index cde4b29..0000000 --- a/src/blink.cpp.bak +++ /dev/null @@ -1,19 +0,0 @@ -#include - -#define LED 2 - -void setup() { - // put your setup code here, to run once: - //Serial.begin(115200); - pinMode(LED, OUTPUT); -} - -void loop() { - // put your main code here, to run repeatedly: - digitalWrite(LED, HIGH); - //Serial.println("LED is on"); - delay(1000); - digitalWrite(LED, LOW); - //Serial.println("LED is off"); - delay(1000); -}