diff --git a/case/cheapino-bottom-left.scad b/case/cheapino-bottom-left.scad index a0c9c32..4dc2024 100644 --- a/case/cheapino-bottom-left.scad +++ b/case/cheapino-bottom-left.scad @@ -12,6 +12,9 @@ step = 0.05; $fn=50; +// Rotate so you dont need to do that in extruder +translate([0,0,2.5]) +rotate([0,180,0]) mirror() { difference() { diff --git a/case/cheapino-bottom-right.scad b/case/cheapino-bottom-right.scad index 6f66b4e..9689405 100644 --- a/case/cheapino-bottom-right.scad +++ b/case/cheapino-bottom-right.scad @@ -12,7 +12,9 @@ step = 0.05; $fn=50; - +// Rotate so you dont need to do that in extruder +translate([0,0,2.5]) +rotate([0,180,0]) difference() { bottom(); diff --git a/case/cheapino-top-left.scad b/case/cheapino-top-left.scad index 2be2894..ca575f7 100644 --- a/case/cheapino-top-left.scad +++ b/case/cheapino-top-left.scad @@ -6,14 +6,16 @@ $fn=50; height_translation = 0; include +// Rotate so you dont need to do that in extruder +translate([0,0,9.1]) +rotate([0,180,0]) +difference() { + case(); + linear_extrude(4.1) offset(delta=0.15) base(); - -//difference() { -// case(); -// linear_extrude(4.1) offset(delta=0.15) base(); - - translate([0,0,4.1]) - board(); + // For debug: comment out above 3 lines and comment in this + //translate([0,0,4.1]) + // board(); translate([0,0,top_of_pcb]) switch_holes(); @@ -35,6 +37,7 @@ mcu_cutout(); // mounting holes mounting_hole_inserts(); -//} +} +