ledfx
    Preparing search index...

    Interface RainEffectConfig

    Specific configuration for the 'rain' effect.

    interface RainEffectConfig {
        high_color?: string;
        high_sensitivity?: number;
        lows_color?: string;
        lows_sensitivity?: number;
        mids_color?: string;
        mids_sensitivity?: number;
        mirror?: boolean;
        pulse_strip?: "Mids" | "Off" | "Lows" | "Highs";
        raindrop_animation?: "Blob" | "Laser" | "Ripple";
        type: "rain";
    }
    Index

    Properties

    high_color?: string

    color for high sounds, ie hi hat

    'blue'
    
    high_sensitivity?: number

    Sensitivity to high sounds

    0.1
    

    0.03

    0.3

    lows_color?: string

    color for low sounds, ie beats

    'white'
    
    lows_sensitivity?: number

    Sensitivity to low sounds

    0.1
    

    0.03

    0.3

    mids_color?: string

    color for mid sounds, ie vocals

    'red'
    
    mids_sensitivity?: number

    Sensitivity to mid sounds

    0.05
    

    0.03

    0.3

    mirror?: boolean

    Mirror the effect

    True
    
    pulse_strip?: "Mids" | "Off" | "Lows" | "Highs"

    Pulse the entire strip to the beat

    'Off'
    
    raindrop_animation?: "Blob" | "Laser" | "Ripple"

    Droplet animation style

    'Blob'
    
    type: "rain"