From 7f15705a8d7d971be12a7266d98c6dbff5e8395d Mon Sep 17 00:00:00 2001 From: rpriven Date: Mon, 23 Feb 2026 00:43:01 -0700 Subject: [PATCH] =?UTF-8?q?Fix=20LED=20polarity=20=E2=80=94=20active=20LOW?= =?UTF-8?q?=20on=20C3=20Super=20Mini?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Opus 4.6 --- src/main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main.cpp b/src/main.cpp index a429b2b..d7793a9 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -104,9 +104,9 @@ void setup() { Serial.println("============================="); Serial.println(); - // Blue LED — Loki is active + // Blue LED — Loki is active (active LOW on C3 Super Mini) pinMode(LED_PIN, OUTPUT); - digitalWrite(LED_PIN, HIGH); + digitalWrite(LED_PIN, LOW); NimBLEDevice::init(""); NimBLEDevice::setOwnAddrType(BLE_OWN_ADDR_RANDOM);