|
|
|
@ -78,7 +78,9 @@ namespace KaleidoscopePlugins {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!wasZero && !map[r][c])
|
|
|
|
|
LEDControl.led_set_crgb_at (r, c, (cRGB){0, 0, 0});
|
|
|
|
|
LEDControl.led_set_crgb_at (r, c, (cRGB) {
|
|
|
|
|
0, 0, 0
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@ -123,8 +125,7 @@ namespace KaleidoscopePlugins {
|
|
|
|
|
|
|
|
|
|
if (*step >= 0xff - 30) {
|
|
|
|
|
color = hsv_to_rgb (0xff - *step, 255, 255);
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
} else {
|
|
|
|
|
color = hsv_to_rgb (30, 255, 255);
|
|
|
|
|
|
|
|
|
|
color.r = min(*step * color.r / 255, 255);
|
|
|
|
|