Skip to content

Instantly share code, notes, and snippets.

@Takazudo
Created July 20, 2025 22:32
Show Gist options
  • Save Takazudo/7f0a4aeccc9f1ee8c00ad4899601aaed to your computer and use it in GitHub Desktop.
Save Takazudo/7f0a4aeccc9f1ee8c00ad4899601aaed to your computer and use it in GitHub Desktop.
test.md
graph LR
    subgraph "4 Jacks (Connected)"
        J1[Jack 1<br/>Tip/Ring/GND]
        J2[Jack 2<br/>Tip/Ring/GND]
        J3[Jack 3<br/>Tip/Ring/GND]
        J4[Jack 4<br/>Tip/Ring/GND]
    end
    
    J1 -.->|All Tips Connected| Signal
    J2 -.->|All Tips Connected| Signal
    J3 -.->|All Tips Connected| Signal
    J4 -.->|All Tips Connected| Signal
    
    Signal[Signal Bus]
    
    Signal -->|Positive Path| D1[D1<br/>Diode]
    D1 --> LEDG[Green LED]
    LEDG --> R1[R1<br/>1.5kΩ]
    R1 --> GND1[GND]
    
    Signal -->|Negative Path| D2[D2<br/>Diode]
    D2 --> LEDR[Red LED]
    LEDR --> R2[R2<br/>1.5kΩ]
    R2 --> GND2[GND]
    
    J1 -.->|All GNDs Connected| GND1
    J2 -.->|All GNDs Connected| GND1
    J3 -.->|All GNDs Connected| GND2
    J4 -.->|All GNDs Connected| GND2
    
    style LEDG fill:#90EE90
    style LEDR fill:#FFB6C1
    style Signal fill:#FFE4B5
Loading
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment