diff options
author | Jonas Smedegaard <dr@jones.dk> | 2025-04-17 20:35:09 +0200 |
---|---|---|
committer | Jonas Smedegaard <dr@jones.dk> | 2025-04-17 20:35:09 +0200 |
commit | 7004616627f21d637793abf9719ce88ee69512cd (patch) | |
tree | 5268e066d18acc2aae819ff5e6ce306339837318 /vote | |
parent | dc9d03afd4630f922c1efacc95e7af9370ffac94 (diff) |
move long comment above code
Diffstat (limited to 'vote')
-rw-r--r-- | vote/vote.ino | 3 |
1 files changed, 2 insertions, 1 deletions
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); |