From d3d06f034d29b47b6b3f18b03dbe4006e51c62d7 Mon Sep 17 00:00:00 2001 From: mattmcw Date: Mon, 27 Feb 2023 12:43:36 -0500 Subject: [PATCH] Fix the box size. Components are too crowded --- examples/JK_projector_takeup_case.scad | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/examples/JK_projector_takeup_case.scad b/examples/JK_projector_takeup_case.scad index 5d80d76..0e1bdbf 100644 --- a/examples/JK_projector_takeup_case.scad +++ b/examples/JK_projector_takeup_case.scad @@ -1,8 +1,8 @@ include <../common/common.scad>; -X = 100; +X = 115; Y = 60; -Z = 30; +Z = 40; USB = -30; L289N = 10; @@ -40,8 +40,8 @@ module l289N_mount () { } module Arduino_Nano_mount () { - X = 18.02; - Y = 43.5; + X = 18.2; + Y = 43.9; Z = 10.5; BOARD_Z = 1.5; difference () { @@ -82,8 +82,8 @@ module case_bottom () { translate ([-20, 0, 0]) { - translate([L289N, -20 + 2, -8]) l289N_mount(); - translate([-10, 6, -7.1]) Arduino_Nano_mount(); + translate([L289N, -20 + 2, -(Z/2) + 7.2]) l289N_mount(); + translate([-10, 6, -(Z/2) + 7.9]) Arduino_Nano_mount(); } } @@ -106,12 +106,12 @@ module case_top () { } module emboss (string) { - letter = 4; + letter = 6; color("red") linear_extrude(10) { text(string, size = letter, halign = "center", valign = "center", $fn = 64); } } -case_top(); -//case_bottom(); \ No newline at end of file +//case_top(); +case_bottom(); \ No newline at end of file