aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordakkar <dakkar@thenautilus.net>2022-03-25 17:55:05 +0000
committerdakkar <dakkar@thenautilus.net>2022-03-25 17:55:05 +0000
commit48bcaf8ec741e6cfaec8f5ae37297575686a261e (patch)
tree5405b5c13a24cfed5dc31f3fb02d84caedc93e0f
parentwider reset hole (diff)
downloadenv-sensor-48bcaf8ec741e6cfaec8f5ae37297575686a261e.tar.gz
env-sensor-48bcaf8ec741e6cfaec8f5ae37297575686a261e.tar.bz2
env-sensor-48bcaf8ec741e6cfaec8f5ae37297575686a261e.zip
remove cable hole
there's a big enough hole already ☺
-rw-r--r--enclosure/enclosure.scad9
1 files changed, 0 insertions, 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]) {