From 016de2ccb4136de46e3417b57b7c1ed38eb05404 Mon Sep 17 00:00:00 2001 From: "Adrian A. Baumann" Date: Sun, 26 Apr 2026 23:26:00 +0200 Subject: [PATCH] 4 Gauges --- Gaugecontroller/Gaugecontroller.ino | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Gaugecontroller/Gaugecontroller.ino b/Gaugecontroller/Gaugecontroller.ino index a744f66..717bb89 100644 --- a/Gaugecontroller/Gaugecontroller.ino +++ b/Gaugecontroller/Gaugecontroller.ino @@ -3,7 +3,7 @@ #include #include -static const uint8_t GAUGE_COUNT = 3; +static const uint8_t GAUGE_COUNT = 4; // One shared WS2812B strip, split into per-gauge segments. static const uint8_t LED_DATA_PIN = 22; @@ -234,6 +234,7 @@ constexpr GaugePins gaugePins[GAUGE_COUNT] = { {50, 51, -1, false, true, true, 7}, // Gauge 0 {8, 9, -1, true, true, true, 7}, // Gauge 1 {52, 53, -1, false, true, true, 7}, // Gauge 2 + {48, 49, -1, false, true, true, 7}, // Gauge 3 }; constexpr uint8_t sumLedCounts(uint8_t i = 0) {