fix motor gear

pull/9/head
Glen Chung 2013-10-16 22:31:58 +08:00
parent d486d3a790
commit 79229527de
1 changed files with 4 additions and 3 deletions

View File

@ -200,14 +200,15 @@ difference() {
} // End of difference() command } // End of difference() command
// -- stepper and gear ---
if(with_motor && with_extra_parts) { if(with_motor && with_extra_parts) {
translate([X_threaded_rod_posX,X_threaded_rod_posY,0]) { translate([X_threaded_rod_posX,X_threaded_rod_posY,0]) {
rotate([0,0,-motor_axis_angle]) translate([motor_axis_distance,0,0]) rotate([0,0,90+motor_axis_angle]) { rotate([0,0,-motor_axis_angle]) translate([motor_axis_distance,0,0]) rotate([0,0,90+motor_axis_angle]) {
translate([0,0,wall_thickness-1]) { translate([0,0,wall_thickness-1]) {
// --- Stepper ---
motor(Cyclone_Nema17, NemaLengthLong); motor(Cyclone_Nema17, NemaLengthLong);
translate([0,0,-12-5.5]) // --- Motor gear ---
cyclone_motor_gear(); translate([0,0,-12-5.5+1])
cyclone_motor_gear(with_extra_parts);
} }
} }
} }