From a310df8533bd97ebea76febb82e33fc62a161d6b Mon Sep 17 00:00:00 2001 From: Glen Chung Date: Wed, 16 Oct 2013 08:33:30 +0800 Subject: [PATCH] add M3 x 8mm grub screw to attach Gear to motor shaft --- Hardware/Development/XZ_axis/motor_gear.scad | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/Hardware/Development/XZ_axis/motor_gear.scad b/Hardware/Development/XZ_axis/motor_gear.scad index 339e8fd..c74e25e 100644 --- a/Hardware/Development/XZ_axis/motor_gear.scad +++ b/Hardware/Development/XZ_axis/motor_gear.scad @@ -33,6 +33,7 @@ * -- * DeuxVis - device@ymail.com */ +include include include @@ -80,6 +81,7 @@ module herringbone_gear( teeth=12, circles=0, shaft=5 ) { ); } +module cyclone_motor_z_gear(with_extra_parts=false) { // Motor gear rotate([180,0,0]) union() difference() { union() { @@ -112,3 +114,11 @@ rotate([180,0,0]) union() difference() { //shaft hole translate( [0, 0, -6] ) cylinder( r=motor_shaft_diameter/2, h=20, $fn=30 ); } + + // --- M3 x 8mm grub screw to attach Gear to motor shaft --- + if(with_extra_parts) + translate([0,-2.5,-(12-3.5)]) rotate([90, 0, 0]) color(Steel) cylinder(r=1.5, h=8, $fn=30); + +} + +cyclone_motor_z_gear();