Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[bug] ezWS2812gpio issue #106

Open
rei-vilo opened this issue Dec 12, 2024 · 0 comments
Open

[bug] ezWS2812gpio issue #106

rei-vilo opened this issue Dec 12, 2024 · 0 comments
Labels
bug Something isn't working

Comments

@rei-vilo
Copy link

rei-vilo commented Dec 12, 2024

Hardware

Arduino Nano Matter

Core version

2.2.0

Arduino IDE version

2.3.4

Operating system

Debian

Radio stack variant

Matter

OpenThread Border Router device (if using Matter)

No response

Issue description

ezWS2812gpio does not manage a WS2813C connected to pin D4.

ezWS2812 works fine but does let choose the output pin.

Serial output

No response

RTT output (if using Matter)

No response

Minimal reproducer code

// SDK
#include "Arduino.h"

// WS2813C
#include "ezWS2812gpio.h"

// Define variables and constants
ezWS2812gpio myRGB(1, 4);

void setup()
{
    myRGB.begin();

    myRGB.set_all(0, 0, 0);
    delay(500);

    myRGB.set_all(32, 32, 32);
    delay(500);

    myRGB.set_all(0, 0, 0);
}

void loop()
{
    delay(1000);
}
@rei-vilo rei-vilo added the bug Something isn't working label Dec 12, 2024
rei-vilo added a commit to rei-vilo/PDLS_EXT4_Basic_Matter that referenced this issue Dec 12, 2024
Added patch for ezWS2812gpio issue (see SiliconLabs/arduino#106)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

1 participant