From 7004616627f21d637793abf9719ce88ee69512cd Mon Sep 17 00:00:00 2001 From: Jonas Smedegaard Date: Thu, 17 Apr 2025 20:35:09 +0200 Subject: move long comment above code --- vote/vote.ino | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'vote/vote.ino') diff --git a/vote/vote.ino b/vote/vote.ino index fcc16c6..3d4b141 100644 --- a/vote/vote.ino +++ b/vote/vote.ino @@ -274,8 +274,9 @@ void setup() { Serial.begin(115200); esp_log_level_set("*", ESP_LOG_DEBUG); + // start with LED off (HIGH = off on active-low boards) pinMode(LED_PIN, OUTPUT); - digitalWrite(LED_PIN, HIGH); // Start with LED off (HIGH = off on active-low boards) + digitalWrite(LED_PIN, HIGH); pinMode(LED1_PIN, OUTPUT); pinMode(LED2_PIN, OUTPUT); -- cgit v1.2.3