From e9a4729c62b9e39d6e7078632f2207596460f065 Mon Sep 17 00:00:00 2001 From: Stefan Heinrichsen Date: Thu, 26 Nov 2020 21:19:38 +0100 Subject: [PATCH] rot und blau waren vertauscht... :-p --- src/ebk_co2ampel.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ebk_co2ampel.cpp b/src/ebk_co2ampel.cpp index 4803e02..5af6151 100644 --- a/src/ebk_co2ampel.cpp +++ b/src/ebk_co2ampel.cpp @@ -152,7 +152,7 @@ void set_led_color(int co2) { } else if (co2 < YELLOW_CO2) { pixels.fill(pixels.Color(40,40,0)); // Gelb } else { - pixels.fill(pixels.Color(0,0,90)); // Rot + pixels.fill(pixels.Color(90,0,0)); // Rot } pixels.show(); }