Skip to content

Commit 1df84a7

Browse files
authored
Merge pull request #383 from smkent/ebox
Add new project box features, convert to library
2 parents 56bd734 + 5341fd3 commit 1df84a7

File tree

7 files changed

+472
-153
lines changed

7 files changed

+472
-153
lines changed

electronics/project-box/SConscript

+1-3
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,7 @@ for opts in GenerateOptions(part=["lid", "box"], dims=dimensions):
1515
model,
1616
{
1717
"Part": opts.part,
18-
"Width": opts.dims[0],
19-
"Length": opts.dims[1],
20-
"Height": opts.dims[2],
18+
"Dimensions": opts.dims,
2119
},
2220
)
2321
b.Image("demo.png", model, {"Part": "all"})
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../../libraries/honeycomb-openscad
-6.01 KB
Loading
-5.73 KB
Loading
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,380 @@
1+
/*
2+
* Electronics project box
3+
* By smkent (GitHub) / bulbasaur0 (Printables)
4+
*
5+
* Licensed under Creative Commons (4.0 International License) Attribution-ShareAlike
6+
*/
7+
8+
include <honeycomb-openscad/honeycomb.scad>;
9+
10+
/* [Development Toggles] */
11+
12+
module __end_customizer_options__() { }
13+
14+
// Constants //
15+
16+
$fa = $preview ? $fa : 2;
17+
$fs = $preview ? $fs / 4 : 0.4;
18+
19+
slop = 0.001;
20+
21+
// Functions //
22+
23+
function vec_add(v, add) = [for (i = v) i + add];
24+
25+
function _eyelet_thickness() = $e_thickness * 2;
26+
27+
function _mounting_screw_xpos() = $e_thickness + $e_mounting_screw_diameter * 1.125;
28+
29+
function _mounting_screw_eyelet_d() = $e_mounting_screw_diameter * 1.125;
30+
31+
// Public Modules //
32+
33+
module ebox(
34+
dimensions,
35+
thickness=2.4,
36+
lid_height=3.9,
37+
screw_diameter=3,
38+
insert_diameter=4.5,
39+
insert_depth=10,
40+
screw_style="flag",
41+
mounting_screws=true,
42+
mounting_screw_diameter=4,
43+
mounting_screw_style="flat",
44+
pattern_lid=0,
45+
pattern_bottom=0,
46+
pattern_walls=[0, 0, 0, 0]
47+
) {
48+
$e_dimensions = dimensions;
49+
$e_width = dimensions[0];
50+
$e_length = dimensions[1];
51+
$e_height = dimensions[2];
52+
$e_thickness = thickness;
53+
$e_lid_height = lid_height;
54+
$e_screw_diameter = screw_diameter;
55+
$e_insert_diameter = insert_diameter;
56+
$e_insert_depth = insert_depth;
57+
$e_screw_style = screw_style;
58+
$e_mounting_screws = mounting_screws;
59+
$e_mounting_screw_diameter = mounting_screw_diameter;
60+
$e_mounting_screw_style = mounting_screw_style;
61+
$e_pattern_lid = pattern_lid;
62+
$e_pattern_bottom = pattern_bottom;
63+
$e_pattern_walls = pattern_walls;
64+
ebox_adjustments()
65+
children();
66+
}
67+
68+
module ebox_adjustments(
69+
print_orientation=true,
70+
screw_inset=4,
71+
corner_radius=3,
72+
edge_radius=1.5,
73+
screw_count=4,
74+
screw_fit=0.4
75+
) {
76+
$e_print_orientation = print_orientation;
77+
$e_screw_inset = screw_inset;
78+
$e_corner_radius = corner_radius;
79+
$e_edge_radius = edge_radius;
80+
$e_screw_count = screw_count;
81+
$e_screw_fit = screw_fit;
82+
children();
83+
}
84+
85+
module ebox_part(part) {
86+
if (Part == "preview") {
87+
_box();
88+
translate([0, 0, slop])
89+
_lid();
90+
} else if (Part == "all") {
91+
sep = $e_length / 2 + $e_thickness * 2;
92+
translate([0, sep, 0])
93+
_box();
94+
translate([0, -sep, 0])
95+
if ($e_print_orientation) {
96+
rotate([180, 0, 0])
97+
translate([0, 0, -($e_height + $e_thickness * 2)])
98+
_lid();
99+
} else {
100+
translate([0, 0, -($e_height - $e_lid_height) - $e_thickness * 2])
101+
_lid();
102+
}
103+
} else if (Part == "box") {
104+
_box();
105+
} else if (Part == "lid") {
106+
if ($e_print_orientation) {
107+
rotate([180, 0, 0])
108+
translate([0, 0, -($e_height + $e_thickness * 2)])
109+
_lid();
110+
} else {
111+
translate([0, 0, -($e_height + $e_thickness)])
112+
_lid();
113+
}
114+
}
115+
}
116+
117+
module ebox_cutouts() {
118+
}
119+
120+
module ebox_interior() {
121+
}
122+
123+
module ebox_extras() {
124+
}
125+
126+
// Internal Modules //
127+
128+
module _hc_pattern(x, y, hex_size=8, separation=2.2, height=$e_thickness) {
129+
translate([0, 0, -slop * 5])
130+
linear_extrude(height=height + slop * 10)
131+
difference() {
132+
square([x, y], center=true);
133+
translate([-x/2, -y/2])
134+
honeycomb(x, y, hex_size, separation, whole_only=true);
135+
}
136+
}
137+
138+
module _hull_pair(height) {
139+
slop = 0.001;
140+
hull() {
141+
for (child_obj = [
142+
// Child index, height offset
143+
[0, 0],
144+
[1, height - slop]
145+
]) {
146+
translate([0, 0, child_obj[1]])
147+
linear_extrude(height=slop)
148+
children(child_obj[0]);
149+
}
150+
}
151+
}
152+
153+
module _round_3d(radius = $e_edge_radius) {
154+
if (radius == 0) {
155+
children();
156+
} else {
157+
render()
158+
minkowski() {
159+
children();
160+
for (mz = [0, 1])
161+
mirror([0, 0, mz])
162+
cylinder(r1=radius, r2=0, h=radius);
163+
}
164+
}
165+
}
166+
167+
module _screw_hole(d, h, fit=0, style="flat", print_upside_down=false) {
168+
inset_min_h = (style == "inset") ? max((h - d), 2) - (h - d) : 0;
169+
translate([0, 0, -slop])
170+
cylinder(d=(d + fit), h=h + slop * 2);
171+
if (style == "countersink" || style == "inset") {
172+
translate([0, 0, h + inset_min_h + slop * 2])
173+
mirror([0, 0, 1])
174+
cylinder(d1=d * 2, d2=d * (style == "inset" ? 2 : 1), h=d);
175+
}
176+
if (style == "inset" && print_upside_down) {
177+
layer_height = 0.2;
178+
translate([0, 0, (h + inset_min_h) - d - layer_height])
179+
linear_extrude(height=layer_height + slop * 2)
180+
intersection() {
181+
square([d * 2, d + fit], center=true);
182+
circle(d=d*2);
183+
}
184+
}
185+
}
186+
187+
module _at_screws() {
188+
if ($e_screw_count == 2) {
189+
for (m = [0, 1])
190+
mirror([m, 0])
191+
mirror([0, m])
192+
translate([$e_width / 2 - $e_screw_inset, $e_length / 2 - $e_screw_inset])
193+
children();
194+
} else {
195+
for (mx = [0, 1], my = [0, 1])
196+
mirror([mx, 0])
197+
mirror([0, my])
198+
translate([$e_width / 2 - $e_screw_inset, $e_length / 2 - $e_screw_inset])
199+
children();
200+
}
201+
}
202+
203+
module _at_box_screws() {
204+
for (mx = [0, 1])
205+
mirror([mx, 0])
206+
translate([$e_width / 2 + _mounting_screw_xpos(), 0])
207+
children();
208+
}
209+
210+
module _box_shape(radius=$e_corner_radius, add=0) {
211+
offset(r=radius)
212+
offset(r=-radius)
213+
square([$e_width + add * 2, $e_length + add * 2], center=true);
214+
}
215+
216+
module _box_interior_base() {
217+
union() {
218+
screw_corner = $e_insert_diameter + $e_screw_inset;
219+
start_ht = $e_height - $e_lid_height + $e_insert_diameter * 0.40;
220+
interior_corner_radius = max(0.5, ($e_corner_radius - $e_thickness));
221+
222+
// Interior shape
223+
color("mintcream", 0.8)
224+
translate([0, 0, $e_thickness])
225+
_round_3d()
226+
translate([0, 0, $e_edge_radius])
227+
union() {
228+
linear_extrude(height=(start_ht - $e_insert_depth - screw_corner) - $e_edge_radius * 2)
229+
_box_shape(add=-$e_edge_radius);
230+
231+
linear_extrude(height=$e_height - $e_edge_radius * 2)
232+
offset(r=interior_corner_radius)
233+
offset(r=-interior_corner_radius)
234+
difference() {
235+
_box_shape(add=-$e_edge_radius);
236+
_at_screws()
237+
union() {
238+
r = $e_insert_diameter + $e_edge_radius;
239+
circle(r=r);
240+
for (tr = [[0, -r], [-r, 0]])
241+
translate(tr)
242+
square([r, r]);
243+
}
244+
}
245+
}
246+
247+
// Interior screw support chamfer
248+
color("mediumpurple", 0.8)
249+
translate([0, 0, (start_ht - $e_insert_depth - screw_corner) + $e_thickness])
250+
union() {
251+
_hull_pair(screw_corner) {
252+
offset(r=interior_corner_radius)
253+
offset(r=-interior_corner_radius)
254+
_box_shape(radius=$e_corner_radius + $e_edge_radius);
255+
_box_shape(radius=$e_corner_radius + $e_edge_radius, add=-screw_corner);
256+
}
257+
if ($e_edge_radius > 0) {
258+
translate([0, 0, -$e_edge_radius + slop])
259+
linear_extrude(height=$e_edge_radius + slop)
260+
_box_shape(radius=$e_corner_radius + $e_edge_radius);
261+
}
262+
}
263+
}
264+
}
265+
266+
module _box_body() {
267+
translate([0, 0, $e_edge_radius])
268+
_round_3d()
269+
linear_extrude(height=$e_height + $e_thickness * 2 - $e_edge_radius * 2)
270+
_box_shape(add=$e_thickness - $e_edge_radius);
271+
}
272+
273+
module _box_screw_eyelets() {
274+
eyelet_round = _mounting_screw_xpos() * 2;
275+
_round_3d()
276+
translate([0, 0, $e_edge_radius])
277+
linear_extrude(height=_eyelet_thickness() - $e_edge_radius * 2)
278+
offset(r=-$e_edge_radius)
279+
offset(r=$e_thickness)
280+
offset(r=-eyelet_round)
281+
offset(r=eyelet_round)
282+
union() {
283+
_box_shape();
284+
_at_box_screws()
285+
union() {
286+
d = _mounting_screw_eyelet_d();
287+
circle(d=d * 2);
288+
translate([-d, 0])
289+
square(d * 2, center=true);
290+
}
291+
}
292+
}
293+
294+
module _box_screws() {
295+
_at_box_screws()
296+
_screw_hole(
297+
d=$e_mounting_screw_diameter,
298+
fit=$e_screw_fit,
299+
h=_eyelet_thickness() + slop * 2,
300+
style=$e_mounting_screw_style
301+
);
302+
}
303+
304+
module _box_patterns() {
305+
if ($e_pattern_bottom)
306+
_hc_pattern($e_width - $e_screw_inset * 2, $e_length - $e_screw_inset * 2);
307+
for (fw = [0:1:3]) {
308+
if ($e_pattern_walls[fw] > 0) {
309+
pattern_x = (((fw % 2) == 0) ? $e_width : $e_length) - $e_insert_diameter * 2 * 2;
310+
pos_y = ((fw % 2) == 0) ? $e_length : $e_width;
311+
mirror([fw == 3 ? 1 : 0, fw == 2 ? 1 : 0])
312+
rotate((fw % 2) != 0 ? 90 : 0)
313+
translate([0, pos_y / 2 + $e_thickness, ($e_height - $e_lid_height) / 2 + $e_thickness])
314+
rotate([90, 0, 0])
315+
_hc_pattern(pattern_x - $e_screw_inset * 2, ($e_height - $e_lid_height) - $e_screw_inset * 2);
316+
}
317+
}
318+
}
319+
320+
module _box_interior() {
321+
difference() {
322+
_box_interior_base();
323+
ebox_interior();
324+
}
325+
}
326+
327+
module _box() {
328+
color("mintcream", 0.8)
329+
render()
330+
union() {
331+
difference() {
332+
intersection() {
333+
union() {
334+
if ($e_mounting_screws)
335+
_box_screw_eyelets();
336+
_box_body();
337+
}
338+
linear_extrude(height=$e_height + $e_thickness * 2 - $e_lid_height)
339+
scale([2, 1])
340+
_box_shape(add=$e_thickness + $e_edge_radius, radius=0);
341+
}
342+
_box_interior();
343+
_at_screws()
344+
translate([0, 0, ($e_height + $e_thickness) - $e_lid_height - $e_insert_depth])
345+
_screw_hole(d=$e_insert_diameter, fit=$e_screw_fit, h=$e_insert_depth + $e_thickness);
346+
if ($e_mounting_screws)
347+
_box_screws();
348+
_box_patterns();
349+
ebox_cutouts();
350+
}
351+
}
352+
ebox_extras();
353+
}
354+
355+
module _lid() {
356+
color("lightsteelblue", (Part == "preview" ? 0.4 : 0.8))
357+
render()
358+
difference() {
359+
intersection() {
360+
_box_body();
361+
translate([0, 0, $e_height + $e_thickness * 2 - $e_lid_height])
362+
linear_extrude(height=$e_lid_height)
363+
_box_shape(add=$e_thickness + $e_edge_radius, radius=0);
364+
}
365+
_box_interior();
366+
_at_screws()
367+
translate([0, 0, $e_height + $e_thickness * 2 - $e_lid_height])
368+
_screw_hole(
369+
d=$e_screw_diameter,
370+
fit=$e_screw_fit,
371+
h=$e_lid_height,
372+
style=$e_screw_style,
373+
print_upside_down=true
374+
);
375+
if ($e_pattern_lid)
376+
translate([0, 0, $e_height + $e_thickness])
377+
_hc_pattern($e_width - $e_screw_inset * 2, $e_length - $e_screw_inset * 2);
378+
ebox_cutouts();
379+
}
380+
}

0 commit comments

Comments
 (0)