ledfx
    Preparing search index...

    Interface VumeterEffectConfig

    Specific configuration for the 'vumeter' effect.

    interface VumeterEffectConfig {
        color_max?: string;
        color_mid?: string;
        color_min?: string;
        color_peak?: string;
        max_volume?: number;
        peak_decay?: number;
        peak_percent?: number;
        type: "vumeter";
    }
    Index

    Properties

    color_max?: string

    Color of max volume warning

    '#FF0000'
    
    color_mid?: string

    Color of heathy volume range

    '#00FF00'
    
    color_min?: string

    Color of min volume cutoff

    '#0000FF'
    
    color_peak?: string

    Color of peak inidicator

    '#FFFFFF'
    
    max_volume?: number

    Cut off limit for max volume warning

    0.8
    

    0

    1

    peak_decay?: number

    Decay filter applied to raw volume to track peak, 0 is None

    0.1
    

    0.01

    0.3

    peak_percent?: number

    % size of peak indicator that follows the filtered volume

    1.0
    

    0

    5

    type: "vumeter"