ledfx
    Preparing search index...

    Interface HierarchyEffectConfig

    Specific configuration for the 'hierarchy' effect.

    interface HierarchyEffectConfig {
        brightness_boost?: number;
        color_high?: string;
        color_lows?: string;
        color_mids?: string;
        switch_time?: number;
        threshold_lows?: number;
        threshold_mids?: number;
        type: "hierarchy";
    }
    Index

    Properties

    brightness_boost?: number

    Boost the brightness of the effect on a parabolic curve

    0.0
    

    0.0

    1.0

    color_high?: string

    Color of high sounds

    '#0000FF'
    
    color_lows?: string

    Color of low, bassy sounds

    '#FF0000'
    
    color_mids?: string

    Color of midrange sounds

    '#00FF00'
    
    switch_time?: number

    Time Lows/Mids have to be below threshold before switch

    0.1
    

    0.0

    1.0

    threshold_lows?: number

    If Lows are below this value, Mids are used.

    0.05
    

    0.0

    1.0

    threshold_mids?: number

    If Mids are below this value, Highs are used

    0.05
    

    0.0

    1.0

    type: "hierarchy"