-
Notifications
You must be signed in to change notification settings - Fork 4
/
x-carriage-mini.scad
63 lines (52 loc) · 1.26 KB
/
x-carriage-mini.scad
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
// PRUSA Mendel
// Mini X-carriage for Ultimaker Bowden Extruders
// Used for sliding on X axis
// GNU GPL v2
// Rob Gilson, Josef Průša
include <configuration.scad>
include <common.scad>
height = 17;
length = 20 + x_rod_spacing; // (+ belt clamp)
zip_tie_hole = [4,7, height];
zip_tie_spacing = 5;
belt_width = 5+2;
clamp_length = belt_width+zip_tie_hole[1];
width = zip_tie_spacing*3+zip_tie_hole[1]*2;
ptfe_slider_outer_diameter = 7/16 * 25.4+1;
difference()
{
union()
{
cube([length,width,height], center = true);
belt_clamps();
}
extruder_mount();
ptfe_sliders();
}
%x_axis_rods();
module extruder_mount()
{
union()
{
translate([0,0,height/2-4/2]) cylinder(r=(16+1)/2, h=4+1, center = true);
cylinder(r=(14+0.5)/2, h=height, center = true);
}
}
module belt_clamps()
{
//belt clamps using zip ties to tie down the belt
translate([length/2+ clamp_length/2,0]) difference()
{
cube([clamp_length,width,height], center=true);
for (i=[-1,1]) translate([-clamp_length/2,i*(zip_tie_hole[1]+zip_tie_spacing)/2])
cube(zip_tie_hole, center = true);
}
}
//This should fit mcmaster part #2706T15
module ptfe_sliders()
{
for (i=[-1,1]) translate([i*x_rod_spacing/2,0,0])
{
rotate([90]) cylinder(r=ptfe_slider_outer_diameter/2, h=width+1, center=true);
}
}