Lixie-Labs / Emotiscope

Let your eyes enjoy the music too ✨ Extremely low-latency audio processing lets LEDs perfectly synchronize to your music's notation and tempo.
https://emotiscope.rocks/
GNU General Public License v3.0
27 stars 5 forks source link

Make "saturation" a slider in the web app #30

Closed github-actions[bot] closed 4 months ago

github-actions[bot] commented 4 months ago

https://github.com/connornishijima/Emotiscope/blob/cdbce2a75586f0f36d0697152fb7dfe8aa44d2d7/src/lightshow_modes/spectrum.h#L21


            // TODO: Make "base coat" a slider in the web app for (at least) Spectrum Mode
            // mag = mag * 0.99 + 0.01;
            CRGBF color = hsv(configuration.hue+(progress*configuration.hue_range), 0.9, mag);

            // TODO: Make "saturation" a slider in the web app

            leds[63-i] = color;
            leds[64+i] = color;