We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent edc6022 commit 1bf13eaCopy full SHA for 1bf13ea
wled00/FX.cpp
@@ -1809,7 +1809,7 @@ uint16_t mode_oscillate(void) {
1809
uint32_t color = BLACK;
1810
for (unsigned j = 0; j < numOscillators; j++) {
1811
if((int)i >= (int)oscillators[j].pos - oscillators[j].size && i <= oscillators[j].pos + oscillators[j].size) {
1812
- color = (color == BLACK) ? SEGCOLOR(j) : color_blend(color, SEGCOLOR(j), 128);
+ color = (color == BLACK) ? SEGCOLOR(j) : color_blend(color, SEGCOLOR(j), uint8_t(128));
1813
}
1814
1815
SEGMENT.setPixelColor(i, color);
0 commit comments