From 3142d1e64e35646fb5d9d565beeecc5821980fa3 Mon Sep 17 00:00:00 2001 From: Aadi Desai <21363892+supleed2@users.noreply.github.com> Date: Tue, 18 May 2021 12:28:50 +0100 Subject: [PATCH] Remove blink sketch ESP32 DevKitC V4 does not have LED_BUILTIN --- Control/src/main.cpp | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/Control/src/main.cpp b/Control/src/main.cpp index eaffe45..1943407 100644 --- a/Control/src/main.cpp +++ b/Control/src/main.cpp @@ -3,13 +3,7 @@ void setup() { Serial.begin(115200); - pinMode(LED_BUILTIN, OUTPUT); - digitalWrite(LED_BUILTIN, HIGH); } void loop() { - delay(2000); - digitalWrite(LED_BUILTIN, HIGH); - delay(2000); - digitalWrite(LED_BUILTIN, LOW); -} \ No newline at end of file +}