From 48bcaf8ec741e6cfaec8f5ae37297575686a261e Mon Sep 17 00:00:00 2001 From: dakkar Date: Fri, 25 Mar 2022 17:55:05 +0000 Subject: remove cable hole MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit there's a big enough hole already ☺ --- enclosure/enclosure.scad | 9 --------- 1 file changed, 9 deletions(-) diff --git a/enclosure/enclosure.scad b/enclosure/enclosure.scad index 15fc75d..b302b87 100644 --- a/enclosure/enclosure.scad +++ b/enclosure/enclosure.scad @@ -36,7 +36,6 @@ CO_HOLE_DIST=CO_HOLE_DIAM + 2; // distance between hole centres BOT_CABLE_WELL_X=15; // just some space for the battery & pm cables MID_CABLE_WELL_X=5; // just some space between co2 & board -CABLE_HOLE_DIAM=12.5; BOTTOM_Z=WALL_THICKNESS + PM_Z; MIDDLE_Z=WALL_THICKNESS + CO_Z; @@ -142,10 +141,6 @@ module battery() { box([BATT_X,BATT_Y,BATT_Z]); } -module cable_hole() { - cylinder(h=200,d=CABLE_HOLE_DIAM,center=true,$fs=0.1); -} - module co_sensor() { box([CO_X,CO_Y,CO_Z]); } @@ -302,9 +297,6 @@ BOARD_Y_OFF= (-TOTAL_Y+BOARD_Y)/2 + SWITCH_Y; CO_X_OFF=(TOTAL_X - CO_X)/2 - WALL_THICKNESS; module middle() { - CABLE_HOLE_X_OFF= TOTAL_X/2 - PM_X - BOT_CABLE_WELL_X/2; - CABLE_HOLE_Y_OFF= -PM_Y/2 + PM_CONN_Y/2; - CO_Z_OFF=MIDDLE_Z - CO_Z; CABLE_X_OFF= CO_X_OFF - CO_X/2 - MID_CABLE_WELL_X/2; @@ -315,7 +307,6 @@ module middle() { difference() { box([TOTAL_X, TOTAL_Y, MIDDLE_Z]); screw_holes(); - translate([CABLE_HOLE_X_OFF, CABLE_HOLE_Y_OFF, 0]) cable_hole(); translate([CO_X_OFF, 0, CO_Z_OFF]) co_sensor(); translate([CABLE_X_OFF, 0, 0]) middle_cable_well(); translate([BOARD_X_OFF, BOARD_Y_OFF, 0]) { -- cgit v1.2.3