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 Aug 25, 2023

RenderedImage

@jcpst
Copy link
Author

jcpst commented Oct 1, 2023

with router pedal

 flowchart TB
    classDef amp stroke-width:0.5em;

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

    GTR ---->|Input| SSP


    LS <-->|Pre Send/Return| SSP
    DL4 <-->|Post Send/Return| SSP
    LS -.->|Reverb Switch| SSP
    SSP ---->|Amp Return| AMP
    SSP -.->|Reverb Switch| AMP

    subgraph "Board"
        T["Tuner"]
        LS["Loop Switcher"]
        
        %% subgraph "Pedal"
            RD["Ring Dinger"]
            RAT["Rat"]
            SB3["SB-3"]
            POG["POG"]
        %% end

        LS <----> RD
        LS <----> RAT
        LS <----> POG
        LS <----> SB3
        LS --> T

        %% subgraph "Amp FX Loop"

            DL4("DL4 mkII")
        %% end
        
        SSP["Shifter Switch Patchbox"]


        LS -.->|MIDI| DL4
    end
Loading

@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