Skip to content

Commit 56ee44b

Browse files
committed
Create reflow-oven-parts
1 parent 7f649ed commit 56ee44b

File tree

7 files changed

+301
-0
lines changed

7 files changed

+301
-0
lines changed

electronics/reflow-oven-parts/LICENSE

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
This work is licensed under the Creative Commons Attribution-ShareAlike 4.0 International License. To view a copy of this license, visit http://creativecommons.org/licenses/by-sa/4.0/ or send a letter to Creative Commons, PO Box 1866, Mountain View, CA 94042, USA.
+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# Controleo3 reflow oven add-ons
2+
3+
![This model is a work in progress][work-in-progress-badge]
4+
[![CC-BY-SA-4.0 license][license-badge]][license]
5+
6+
Misc add-ons for Controleo3 reflow oven:
7+
8+
* Front panel wiring grommet
9+
* Enclosure mounting spacer
10+
11+
![Model render](images/readme/demo.png)
12+
13+
## License
14+
15+
This model is licensed under [Creative Commons (4.0 International License) Attribution-ShareAlike][license].
16+
17+
18+
[license]: http://creativecommons.org/licenses/by-sa/4.0/
19+
[license-badge]: /_static/license-badge-cc-by-sa-4.0.svg
20+
[work-in-progress-badge]: /_static/work-in-progress-badge.svg
+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
Import("env")
2+
b = ModelBuilder(env)
3+
4+
panel_model = "panel-grommet.scad"
5+
enclosure_mount_model = "enclosure-mount.scad"
6+
7+
b.STL("panel-grommet.stl", panel_model)
8+
b.STL("enclosure-mount.stl", enclosure_mount_model)
9+
b.Image("demo.png", panel_model)
10+
11+
b.add_default_targets()
12+
13+
# vim: ft=python
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,138 @@
1+
/*
2+
* Controleo3 reflow oven add-ons
3+
* Enclosure mounting spacer
4+
* By smkent (GitHub) / bulbasaur0 (Printables)
5+
*
6+
* Licensed under Creative Commons (4.0 International License) Attribution-ShareAlike
7+
*/
8+
9+
/* [Size] */
10+
// All units in millimeters
11+
12+
Dimensions = [38, 15];
13+
14+
Thickness = 4; // [1.5:0.1:10]
15+
Diameter = 35;
16+
Hole_Diameter = 16; // [10:0.1:30]
17+
Screw_Hole_Diameter = 3; // [2:0.1:5]
18+
Screw_Hole_Offset = 14;
19+
Screw_Separation = 19;
20+
Grommet_Thickness = 3; // [0.8:0.1:5]
21+
Grommet_Depth = 2; // [0.4:0.1:5]
22+
23+
/* [Advanced Options] */
24+
Screw_Hole_Fit = 0.2; // [0:0.05:1]
25+
Screw_Hole_Style = "inset"; // [flat: Flat, countersink: Countersink, inset: Inset]
26+
Edge_Radius = 0.4; // [0:0.1:3]
27+
28+
/* [Development Toggles] */
29+
30+
module __end_customizer_options__() { }
31+
32+
// Constants //
33+
34+
$fa = $preview ? $fa : 2;
35+
$fs = $preview ? $fs / 2 : 0.4;
36+
37+
slop = 0.001;
38+
39+
// Modules //
40+
41+
module _round_3d(radius = Edge_Radius) {
42+
if (radius == 0) {
43+
children();
44+
} else {
45+
render()
46+
minkowski() {
47+
children();
48+
for (mz = [0, 1])
49+
mirror([0, 0, mz])
50+
cylinder(r1=radius, r2=0, h=radius);
51+
}
52+
}
53+
}
54+
55+
module _screw_hole(d, h, fit=0, style="flat", print_upside_down=false) {
56+
inset_bare_min_h = 1.4;
57+
inset_min_h = (style == "inset") ? max((h - d), inset_bare_min_h) - (h - d) : 0;
58+
translate([0, 0, -slop])
59+
cylinder(d=(d + fit), h=h + slop * 2);
60+
if (style == "countersink" || style == "inset") {
61+
translate([0, 0, h + inset_min_h + slop * 2])
62+
mirror([0, 0, 1])
63+
cylinder(d1=d * 2, d2=d * (style == "inset" ? 2 : 1), h=d);
64+
}
65+
if (style == "inset" && print_upside_down) {
66+
layer_height = 0.2;
67+
translate([0, 0, (h + inset_min_h) - d - layer_height])
68+
linear_extrude(height=layer_height + slop * 2)
69+
intersection() {
70+
square([d * 2, d + fit], center=true);
71+
circle(d=d*2);
72+
}
73+
}
74+
}
75+
76+
module at_enclosure_mount_screw_holes() {
77+
for (mx = [0, 1])
78+
mirror([mx, 0])
79+
translate([Screw_Separation / 2, 0])
80+
children();
81+
}
82+
83+
module enclosure_mount_body() {
84+
difference() {
85+
translate([0, 0, Edge_Radius])
86+
union() {
87+
rr = 2;
88+
_round_3d()
89+
difference() {
90+
linear_extrude(height=Thickness - Edge_Radius * 2)
91+
offset(r=rr)
92+
offset(r=-rr)
93+
square(Dimensions, center=true);
94+
translate([0, 0, Dimensions[1] + (Thickness - Edge_Radius * 2) / 2])
95+
rotate([0, 90, 0])
96+
cylinder(h=Dimensions[0], d=Dimensions[1] * 2, center=true);
97+
}
98+
}
99+
if(0)
100+
union() {
101+
dd = Hole_Diameter - Grommet_Thickness * 2;
102+
translate([0, 0, slop])
103+
linear_extrude(height=Thickness + Grommet_Depth + slop * 2)
104+
circle(d=dd);
105+
translate([0, 0, -slop])
106+
cylinder(d2=dd, d1=dd + Edge_Radius * 2, h=Edge_Radius);
107+
translate([0, 0, Thickness + Grommet_Depth - Edge_Radius + slop])
108+
cylinder(d1=dd, d2=dd + Edge_Radius * 2, h=Edge_Radius);
109+
}
110+
}
111+
}
112+
113+
module enclosure_mount_screw_holes() {
114+
translate([0, 0, Thickness])
115+
mirror([0, 0, 1])
116+
at_enclosure_mount_screw_holes()
117+
hull() {
118+
oy = (Dimensions[1] - Screw_Hole_Diameter) / 4;
119+
for (my = [0, 1])
120+
mirror([0, my])
121+
translate([0, oy, 0])
122+
cylinder(d=Screw_Hole_Diameter + Screw_Hole_Fit, h=Thickness * 2);
123+
}
124+
}
125+
126+
module panel_grommet() {
127+
difference() {
128+
enclosure_mount_body();
129+
enclosure_mount_screw_holes();
130+
}
131+
}
132+
133+
module main() {
134+
color("yellowgreen", 0.8)
135+
panel_grommet();
136+
}
137+
138+
main();
Loading
Loading
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,129 @@
1+
/*
2+
* Controleo3 reflow oven add-ons
3+
* Front panel wiring grommet
4+
* By smkent (GitHub) / bulbasaur0 (Printables)
5+
*
6+
* Licensed under Creative Commons (4.0 International License) Attribution-ShareAlike
7+
*/
8+
9+
/* [Size] */
10+
// All units in millimeters
11+
12+
Thickness = 3; // [1.5:0.1:10]
13+
Diameter = 35;
14+
Hole_Diameter = 16; // [10:0.1:30]
15+
Screw_Hole_Diameter = 3; // [2:0.1:5]
16+
Screw_Hole_Offset = 14;
17+
Grommet_Thickness = 3; // [0.8:0.1:5]
18+
Grommet_Depth = 2; // [0.4:0.1:5]
19+
20+
/* [Advanced Options] */
21+
Screw_Hole_Fit = 0.2; // [0:0.05:1]
22+
Screw_Hole_Style = "inset"; // [flat: Flat, countersink: Countersink, inset: Inset]
23+
Edge_Radius = 0.4; // [0:0.1:3]
24+
25+
/* [Development Toggles] */
26+
27+
module __end_customizer_options__() { }
28+
29+
// Constants //
30+
31+
$fa = $preview ? $fa : 2;
32+
$fs = $preview ? $fs / 2 : 0.4;
33+
34+
slop = 0.001;
35+
36+
// Modules //
37+
38+
module _round_3d(radius = Edge_Radius) {
39+
if (radius == 0) {
40+
children();
41+
} else {
42+
render()
43+
minkowski() {
44+
children();
45+
for (mz = [0, 1])
46+
mirror([0, 0, mz])
47+
cylinder(r1=radius, r2=0, h=radius);
48+
}
49+
}
50+
}
51+
52+
module _screw_hole(d, h, fit=0, style="flat", print_upside_down=false) {
53+
inset_bare_min_h = 1.4;
54+
inset_min_h = (style == "inset") ? max((h - d), inset_bare_min_h) - (h - d) : 0;
55+
translate([0, 0, -slop])
56+
cylinder(d=(d + fit), h=h + slop * 2);
57+
if (style == "countersink" || style == "inset") {
58+
translate([0, 0, h + inset_min_h + slop * 2])
59+
mirror([0, 0, 1])
60+
cylinder(d1=d * 2, d2=d * (style == "inset" ? 2 : 1), h=d);
61+
}
62+
if (style == "inset" && print_upside_down) {
63+
layer_height = 0.2;
64+
translate([0, 0, (h + inset_min_h) - d - layer_height])
65+
linear_extrude(height=layer_height + slop * 2)
66+
intersection() {
67+
square([d * 2, d + fit], center=true);
68+
circle(d=d*2);
69+
}
70+
}
71+
}
72+
73+
module at_panel_grommet_screw_holes() {
74+
for (angle = [0:90:270])
75+
rotate(angle)
76+
translate([Screw_Hole_Offset, 0])
77+
children();
78+
}
79+
80+
module panel_grommet_body() {
81+
difference() {
82+
translate([0, 0, Edge_Radius])
83+
union() {
84+
_round_3d()
85+
linear_extrude(height=Thickness - Edge_Radius * 2)
86+
circle(d=Diameter);
87+
_round_3d()
88+
linear_extrude(height=Thickness + Grommet_Depth - Edge_Radius * 2)
89+
circle(d=Hole_Diameter - Edge_Radius * 2);
90+
}
91+
union() {
92+
dd = Hole_Diameter - Grommet_Thickness * 2;
93+
translate([0, 0, slop])
94+
linear_extrude(height=Thickness + Grommet_Depth + slop * 2)
95+
circle(d=dd);
96+
translate([0, 0, -slop])
97+
cylinder(d2=dd, d1=dd + Edge_Radius * 2, h=Edge_Radius);
98+
translate([0, 0, Thickness + Grommet_Depth - Edge_Radius + slop])
99+
cylinder(d1=dd, d2=dd + Edge_Radius * 2, h=Edge_Radius);
100+
}
101+
}
102+
}
103+
104+
module panel_grommet_screw_holes() {
105+
translate([0, 0, Thickness])
106+
mirror([0, 0, 1])
107+
at_panel_grommet_screw_holes()
108+
_screw_hole(
109+
d=Screw_Hole_Diameter,
110+
h=Thickness,
111+
fit=Screw_Hole_Fit,
112+
style=Screw_Hole_Style,
113+
print_upside_down=true
114+
);
115+
}
116+
117+
module panel_grommet() {
118+
difference() {
119+
panel_grommet_body();
120+
panel_grommet_screw_holes();
121+
}
122+
}
123+
124+
module main() {
125+
color("lightsteelblue", 0.8)
126+
panel_grommet();
127+
}
128+
129+
main();

0 commit comments

Comments
 (0)