Switch from FastLED to Adafruit NeoPixel (more reliable on ESP32-S3 RMT)

This commit is contained in:
2026-06-23 14:32:19 +00:00
parent 2931571880
commit 5f2ad9ef91
4 changed files with 21 additions and 22 deletions
+2 -4
View File
@@ -1,7 +1,7 @@
#pragma once
#include <cstdint>
#include <FastLED.h>
#include <Adafruit_NeoPixel.h>
class PixelStompMux {
public:
@@ -29,8 +29,6 @@ private:
uint8_t pin_clk;
uint8_t pin_di;
CRGB leds[NUM_LEDS];
Adafruit_NeoPixel strip;
uint8_t last_button_state;
uint8_t shift_in_74hc165();
};