diff options
-rw-r--r-- | 3d-print/controller.scad | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/3d-print/controller.scad b/3d-print/controller.scad index 1b084d6..d75aadc 100644 --- a/3d-print/controller.scad +++ b/3d-print/controller.scad @@ -33,8 +33,8 @@ module resistors() { difference() { union() { - cube([40,80,1.25]); - translate([12.5,60,0.5]) cube([15,10,3.5]); + cube([40,90,1.25]); + translate([12.5,70,0.5]) cube([15,10,3.5]); } translate([6.25,8.5,0]) esp32(); @@ -54,6 +54,10 @@ difference() { // columns: ouput pins directly to pins 2&4 of each qrd1114 + // connectors for the cable + translate([5,57,0]) rotate([0,0,-90]) vias100mil(5); + translate([25,57,0]) rotate([0,0,-90]) vias100mil(5); + translate([15,60,0]) rotate([0,0,-90]) vias100mil(5); - translate([30,57.5,0]) rotate([0,0,90]) amp(); + translate([30,67.5,0]) rotate([0,0,90]) amp(); } |