Skip to content

Instantly share code, notes, and snippets.

@jcpst
Last active February 25, 2026 22:09
Show Gist options
  • Select an option

  • Save jcpst/7a27a80c5e8aca8577dc384eac4dc9be to your computer and use it in GitHub Desktop.

Select an option

Save jcpst/7a27a80c5e8aca8577dc384eac4dc9be to your computer and use it in GitHub Desktop.
Pedalboard Evolution
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 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

@jcpst
Copy link
Author

jcpst commented Sep 27, 2025

IMG_2979

@jcpst
Copy link
Author

jcpst commented Feb 25, 2026

Phase IV

flowchart RL
    classDef bold stroke-width:0.5em;

    T[tuner]:::bold
    EQA[CH A - EQ-200]
    XS[XS-100]
    SW[Switch Dr.]
    HG[1 - Holy Grit]
    GR[2 - Green Ringer]
    LF[3 - Lulz Face]
    DS[4 - DS-1]
    EQB[CH B - EQ-200]
    AMP:::bold

subgraph "Input Chain"
    T --> EQA --> XS --> SW
    
    SW --> EQB --> AMP

    subgraph "loop switcher"
        SW <--> HG & GR & LF & DS
    end
end
Loading
flowchart RL
    classDef bold stroke-width:0.5em;

    FX(((FX Send))):::bold
    HY[HydraX4]
    PP[Pitch Pirate]
    RM[Rainbow Machine]
    DMM[Deluxe Memory Man]
    P2[Phase II]
    FXR(((FX Return))):::bold

subgraph "FX Loop"
    FX --> HY
    HY --> FXR

    subgraph "Loop Switcher"
    HY --> PP & RM & DMM & P2
    end
end
Loading
flowchart TD
    classDef bold stroke-width:0.5em;

    SW[Switch Dr.]
    DMC[micro.DMC Pro]
    HY[HydraX4]
    EQ[EQ-200]
    XS[XS-100]

subgraph "MIDI"
    SW -.-> DMC -.-> HY -.-> EQ -.-> XS
end
Loading

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