Skip to content

Instantly share code, notes, and snippets.

@jcpst
Last active February 26, 2024 17:21
Show Gist options
  • Save jcpst/7a27a80c5e8aca8577dc384eac4dc9be to your computer and use it in GitHub Desktop.
Save jcpst/7a27a80c5e8aca8577dc384eac4dc9be to your computer and use it in GitHub Desktop.
Pedalboard
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@jcpst
Copy link
Author

jcpst commented Feb 26, 2024

 flowchart RL
    classDef amp stroke-width:0.5em;

    GTR(("Guitar")):::amp
    AMP(("Amp")):::amp

    GTR ---->|Input| T
    B --> AMP


    subgraph "Board"
        T["Tuner"]
        LS["Loop Switcher"]
        
        RD["Ring Dinger"]
        RAT["Rat"]

        %% clean
        T --> N
        N --> Comp

        subgraph "Clean"
        Comp --> EQ1
        end
        
        EQ1 --> B
        
        %% synth
        B ---> P["Parallel"]

        subgraph "Synth"
        P --> Data
        P --> Sub
        Sub --> P
        Data --> P
        
        end

        P ---> LS

        %% dirt
        subgraph "Dirt"
        LS --> RAT --> LS
        LS --> RD --> LS
        LS --> G3 --> LS
        LS --> PnC --> LS
        end

        LS --> N["Noise Gate"] --> LG["Low Gain"]

        subgraph "final"
        LG --> EQ2
        end
        
        
        EQ2 --> B["Blend"]
        
    end
Loading

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment