RGBLed
RGBLed copied to clipboard
An Arduino library to control RGB led
A small request if the function could be extended to support RGBW LEDs (with a additional white LEDs). Maybe I have overlooked the possibility to handle it with the existing...
At this moment, the delay for the LED is blocking the program to continue it's loop. I'm using this library to get a status led flashing in multiple colors, works...
The API Change currently breaks this project specifically in the RGBLed Constructor for ESP-32 based projects Maybe change from ```cpp ledcSetup(0, 5000, 8); ledcSetup(1, 5000, 8); ledcSetup(2, 5000, 8); ledcAttachPin(_red,...
Hi there. I am trying to control 3x CA RGB leds but it appears to be impossible. ``` #define R1_PIN 12 #define G1_PIN 14 #define B1_PIN 27 #define R2_PIN 26...
I added support for the new [`ESP32 API`](https://docs.espressif.com/projects/arduino-esp32/en/latest/migration_guides/2.x_to_3.0.html). There were some breaking changes with the [`LEDC API`](https://docs.espressif.com/projects/arduino-esp32/en/latest/api/ledc.html). I implemented the @The39thBit suggestion in #16 and replaced `ledcWrite` _(that now only...