From 71311db849f7bd5792a46c12fc0ddf45f9b05712 Mon Sep 17 00:00:00 2001 From: Andreas Blohm Date: Tue, 19 Aug 2025 22:07:14 +0200 Subject: [PATCH] increase LED blink duration in loop function --- src/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.cpp b/src/main.cpp index cdadbff..d1c6b2b 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -6,7 +6,7 @@ void setup() { void loop() { digitalWrite(LED_BUILTIN, HIGH); - delay(1000); + delay(1500); digitalWrite(LED_BUILTIN, LOW); delay(500); } \ No newline at end of file