How to get a much slower LFO speed for color?

Hi there!
One issue I’m often having with the Eyesy is that the color changes are happening very fast, making the visuals very busy and hectic. This is great for certain types of music, but what I usually perform is much slower. Even when I have the knob4 turned just above 12:00, the color changes are just happening way too fast.

How can I get a much slower LFO speed for the color picker on any given mode?

Hi,
From the API section of the manual:

eyesy.color_picker_lfo() - This function is similar to “eyesy.color_picker()” but has a built-in LFO so the color changes automatically. The first half of the knob rotation (moving from maximum left to center) selects a static color. The second half of the knob rotation (moving from center to maximum right) selects the LFO rate.
[…]
This function has an optional, second argument that controls the maximum LFO rate. If no value is included in the function call, the default LFO rate will be used. This default value is 0.1. In the example below 1.1 is the optional argument:

color = eyesy.color_picker_lfo(eyesy.knob4, 1.1)


To have slower LFO rates, you can try a value below ‘0.1’ for the optional argument.

1 Like

Thank you! looks like I missed that section in the manual.

1 Like