Skip to content

Commit

Permalink
Updated ball caster design to raise back of robot by 3mm
Browse files Browse the repository at this point in the history
  • Loading branch information
Simon Inns committed May 15, 2020
1 parent a0f6e61 commit 0861990
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion scad/assemblies.scad
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@ module sub_assembly_10(standalone)
move([3,45 + 15 + 1,-45 - 5]) caster_ball_holder(false);

// Ball holder
move([3,45 + 15 + 1,-45 - 2]) {
move([3,45 + 15 + 1,-45 - 5]) {
caster_ball_base(false);
caster_ball_top(false);

Expand Down
6 changes: 3 additions & 3 deletions scad/caster_ball.scad
Original file line number Diff line number Diff line change
Expand Up @@ -132,13 +132,13 @@ module render_caster_ball_base()
{
difference() {
union() {
move([0,0,-6.5]) cyl(h=2,d=30, chamfer=0.5); // Lip
move([0,0,-6.5 + 1.5]) cyl(h=2 + 3,d=30, chamfer=0.5); // Lip
move([0,0,-10.5]) cyl(h=3,d1=16, d2=24, chamfer1=0.5, center=false); // Ball chamfer
}

// 2x 8mm holes around the circumference of the hub
move([0,0,-6.5]) zrot_copies(rots=[210,330], r=33/2, subrot=false) {
zcyl(h=6, d=8);
zcyl(h=10, d=8);
}

move([0,0,-3.5]) render_ball_bearing(20.5);
Expand Down Expand Up @@ -167,7 +167,7 @@ module caster_ball_base(printMode)
{
$fn=60;
if (printMode) {
rotate([0,180,0]) move([0,0,5.5]) render_caster_ball_base();
rotate([0,180,0]) move([0,0,5.5 - 3]) render_caster_ball_base();
} else {
color("lightgrey") render_caster_ball_base();
}
Expand Down

0 comments on commit 0861990

Please sign in to comment.