FastLED 3.9.15
Loading...
Searching...
No Matches

◆ FFTScalingMode

FFT bin scaling mode applied before per-bin normalization.

WLED-MM default is SquareRoot; FastLED previously used None (raw CQT magnitudes).

Enumerator
None 

Raw magnitudes (no scaling)

SquareRoot 

Square root of magnitude (WLED-MM default, good perceptual balance)

Logarithmic 

Log10(1 + magnitude) — compresses high peaks.

Linear 

Identity (same as None, explicit name for WLED compat)

Definition at line 17 of file equalizer.h.

17 : u8 {
18 None,
21 Linear
22};
unsigned char u8
Definition stdint.h:131
@ Logarithmic
Log10(1 + magnitude) — compresses high peaks.
Definition equalizer.h:20
@ Linear
Identity (same as None, explicit name for WLED compat)
Definition equalizer.h:21
@ None
Raw magnitudes (no scaling)
Definition equalizer.h:18
@ SquareRoot
Square root of magnitude (WLED-MM default, good perceptual balance)
Definition equalizer.h:19