Hi,
From what I’ve found, there doens’t seem to be any support for Analog RGB Led strips that have their logic inverted. I got that working by adding
#ifdef WLED_ANALOG_LEDS_INVERT
r = 255-r;
g = 255-g;
b = 255-b;
w = 255-w;
w2 = 255-w2;
#endif
at the start of the SetRgbwPwm function in NpbWrapper.h file, and then in my platform_override.ini, set that build flag as well.
Is this something that could be added?
Regards,
Kester