ledfx
    Preparing search index...

    Interface NumberEffectConfig

    Specific configuration for the 'number' effect.

    interface NumberEffectConfig {
        alpha?: boolean;
        decimal_digits?: number;
        deep_diag?: boolean;
        font?:
            | "Blade-5x8"
            | "Roboto Regular"
            | "Roboto Bold"
            | "Roboto Black"
            | "Stop"
            | "Technique"
            | "8bitOperatorPlus8"
            | "Press Start 2P";
        height_percent?: number;
        impulse_decay?: number;
        multiplier?: number;
        negative?: boolean;
        option_1?: boolean;
        option_2?: boolean;
        resize_method?: "Fast"
        | "Fastest"
        | "Slow";
        speed_option_1?: number;
        text?: string;
        text_color?: string;
        text_effect?:
            | "Side Scroll"
            | "Spokes"
            | "Carousel"
            | "Wave"
            | "Pulse"
            | "Fade";
        type: "number";
        use_gradient?: boolean;
        value_option_1?: number;
        value_source?: | "BPM"
        | "BPM Confidence"
        | "Time (HH:MM)"
        | "Time (HH:MM:SS)";
        whole_digits?: number;
    }
    Index
    alpha?: boolean

    apply alpha effect to text

    False
    
    decimal_digits?: number

    Number of digits to display after decimal point (for stable text size)

    2
    

    0

    6

    deep_diag?: boolean

    Diagnostic overlayed on matrix

    False
    
    font?:
        | "Blade-5x8"
        | "Roboto Regular"
        | "Roboto Bold"
        | "Roboto Black"
        | "Stop"
        | "Technique"
        | "8bitOperatorPlus8"
        | "Press Start 2P"

    Font to render text with

    'Press Start 2P'
    
    height_percent?: number

    Font size as a percentage of the display height, fonts are unpredictable!

    100
    

    10

    150

    impulse_decay?: number

    Decay filter applied to the impulse for development

    0.1
    

    0.01

    0.3

    multiplier?: number

    multiplier of audio effect injection

    1
    

    0.0

    10

    negative?: boolean

    Support negative values (include negative sign in sizing)

    False
    
    option_1?: boolean

    Text effect specific option switch

    False
    
    option_2?: boolean

    Text effect specific option switch

    False
    
    resize_method?: "Fast" | "Fastest" | "Slow"

    What aliasing strategy to use when manipulating text elements

    'Fast'
    
    speed_option_1?: number

    general speed slider for text effects

    1
    

    0.0

    3

    text?: string

    Your text to display

    'Your text here'
    
    text_color?: string

    Color of text

    '#FFFFFF'
    
    text_effect?: "Side Scroll" | "Spokes" | "Carousel" | "Wave" | "Pulse" | "Fade"

    Text effect to apply to configuration

    'Side Scroll'
    
    type: "number"
    use_gradient?: boolean

    Use gradient for word colors

    False
    
    value_option_1?: number

    general value slider for text effects

    0.5
    

    0.0

    1.0

    value_source?: "BPM" | "BPM Confidence" | "Time (HH:MM)" | "Time (HH:MM:SS)"

    Source of the value to display

    'BPM'
    
    whole_digits?: number

    Number of digits to reserve before decimal point (for stable text size)

    3
    

    1

    10