- Added guide structure to solder in MIDI Plugs as straight as possible

This commit is contained in:
2025-09-14 13:12:05 +02:00
parent d2f282c477
commit 097a50f073
3 changed files with 30 additions and 6 deletions

View File

@@ -5,7 +5,7 @@ use <MCAD/boxes.scad>
include <NopSCADlib/vitamins/pcb.scad>
module PCB()
module PCB(Add_Audio_Jack = true)
{
color([0.0, 1.0, 0.0])
difference()
@@ -23,7 +23,9 @@ module PCB()
translate([0, 0, PCB_T/2]) translate(Button) Button();
translate([0, 0, PCB_T/2]) translate(USB_C) usb_C(false);
translate([0, 0, PCB_T/2]) translate(MOLEX) MOLEX_2x2P(false);
translate([0, 0, PCB_T/2]) translate(Audio_Jack) Audio_Jack(false);
if(Add_Audio_Jack) {
translate([0, 0, PCB_T/2]) translate(Audio_Jack) Audio_Jack(false);
}
for (i = MIDI_Plugs) {
translate(i) MIDI_Plug_MABPM_5S(false);
}