replace z motors and add lead screws

This commit is contained in:
lukas 2021-01-10 18:43:57 +01:00
parent fe87b29f79
commit a8f1f2c51b

View File

@ -69,8 +69,12 @@ module printBed() {
} }
module zMotor(){ module zMotor(){
translate([20, 200, 41]) rotate([0, 180, 0]) Nema17(); translate([-20, 240, 81]) rotate([0, 180, 0]) Nema17();
translate([380, 200, 41]) 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 -- // // -- MODULES -- //
@ -86,3 +90,7 @@ module halfAluProfile(length) {
module linear_rail(length) { module linear_rail(length) {
color("#cccccc") cylinder(h = length, d = 8, $fn=33); color("#cccccc") cylinder(h = length, d = 8, $fn=33);
} }
module bearing(){
cylinder(h = length, d = 8, $fn=33);
}