From a8f1f2c51b853fb2e1ec4695d167f0bb24d0b29b Mon Sep 17 00:00:00 2001 From: lukas Date: Sun, 10 Jan 2021 18:43:57 +0100 Subject: [PATCH] replace z motors and add lead screws --- 3dprinter.scad | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/3dprinter.scad b/3dprinter.scad index 7501dee..74de5ec 100644 --- a/3dprinter.scad +++ b/3dprinter.scad @@ -69,8 +69,12 @@ module printBed() { } module zMotor(){ - translate([20, 200, 41]) rotate([0, 180, 0]) Nema17(); - translate([380, 200, 41]) rotate([0, 180, 0]) Nema17(); + translate([-20, 240, 81]) rotate([0, 180, 0]) Nema17(); + translate([-20, 240, 97]) linear_rail(500); + + // add lead screws + translate([420, 240, 81]) rotate([0, 180, 0]) Nema17(); + translate([420, 240, 97]) linear_rail(500); } // -- MODULES -- // @@ -85,4 +89,8 @@ module halfAluProfile(length) { module linear_rail(length) { color("#cccccc") cylinder(h = length, d = 8, $fn=33); +} + +module bearing(){ + cylinder(h = length, d = 8, $fn=33); } \ No newline at end of file