Switch rotary back to ws2812

pull/194/head
ZodiusInfuser 2021-08-24 14:26:35 +01:00
rodzic a347eb468f
commit dc7da7d07a
1 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -43,10 +43,10 @@ const uint UPDATES = 60;
// Pick *one* LED type by uncommenting the relevant line below:
// APA102-style LEDs with Data/Clock lines. AKA DotStar
APA102 led_strip(N_LEDS, pio0, 0, plasma2040::DAT, plasma2040::CLK);
//APA102 led_strip(N_LEDS, pio0, 0, plasma2040::DAT, plasma2040::CLK);
// WS28X-style LEDs with a single signal line. AKA NeoPixel
//WS2812 led_strip(N_LEDS, pio0, 0, plasma2040::DAT);
WS2812 led_strip(N_LEDS, pio0, 0, plasma2040::DAT);
Button user_sw(plasma2040::USER_SW, Polarity::ACTIVE_LOW, 0);