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); -}