Skip to content

[bug] ezWS2812gpio issue #106

Open
Open
@rei-vilo

Description

@rei-vilo

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);
}

Metadata

Metadata

Assignees

No one assigned

    Labels

    bugSomething isn't working

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions