Original-Prusa-i3/SCAD/mmu2-filament-sensor-cover....

57 lines
2.1 KiB
OpenSCAD

// PRUSA iteration4
// Filament sensor cover
// GNU GPL v3
// Josef Průša <iam@josefprusa.cz> and contributors
// http://www.reprap.org/wiki/Prusa_Mendel
// http://prusamendel.org
module part()
{
difference()
{
union()
{
// base shape
translate([-6,50,-30.5]) cube([24,3,36]);
translate([0,63,-17]) rotate([90,0,0]) cylinder(r=6,h = 13, $fn=30);
translate([0,63,-10]) rotate([90,0,0]) cylinder(r=5,h = 13, $fn=30);
translate([-5,50,-17]) cube([10,13,7]);
}
// brass insert hole
translate([0,63.5,-17]) rotate([90,0,0]) cylinder(r=3.8,h = 5.5, $fn=30);
translate([0,65,-17]) rotate([90,0,0]) cylinder(r=5,h = 2, $fn=30);
// mounting screws
translate([12,60,-12]) rotate([90,0,0]) cylinder(r=1.6,h = 20, $fn=30);
translate([-1,60,-24.5]) rotate([90,0,0]) cylinder(r=1.6,h = 20, $fn=30);
translate([12,54.5,-12]) rotate([90,0,0]) cylinder(r=3.1,h = 3, $fn=30);
translate([-1,66.5,-24.5]) rotate([90,0,0]) cylinder(r=3.1,h = 15, $fn=30);
// filament guide
translate([0,59.8,-17]) rotate([90,0,0]) cylinder(r=2.2,h = 9.8, $fn=30);
translate([0,61,-17]) rotate([90,0,0]) cylinder(r=1,h = 20, $fn=30);
translate([0,62.5,-17]) rotate([90,0,0]) cylinder(r2=1.2, r1=3,h = 3, $fn=30);
translate([0,53.9,-17]) rotate([90,0,0]) cylinder(r1=2.2, r2=3,h = 4, $fn=30);
// nice edges
translate([19,50,-40]) rotate([0,0,45]) cube([10,10,50]);
translate([-8,56.5,-39]) rotate([45,0,0]) cube([50,10,10]);
translate([-8,56.5,-1]) rotate([45,0,0]) cube([50,10,10]);
translate([7,50.4,0]) rotate([90,180,0]) linear_extrude(height = 0.6)
{ text("R1",font = "helvetica:style=Bold", size=5, center=true); }
}
}
rotate([90,0,0])
part();