This commit is contained in:
Jon Garrison 2023-03-16 16:15:35 +01:00 committed by GitHub
commit 8db64d0beb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 11127 additions and 10885 deletions

View File

@ -26,10 +26,31 @@ module m3_nut()
}
}
/**
* These protusions prevent cable breakage in the event of the build platform colliding
* with an object behind the printer. Hours of wasted life will be saved :)
*
* square collision ends allow a solid easily detected hit and will not cause the
* machine to jump up or down.
**/
module cable_break_preventer()
{
z_offset = -3;
center_offset = 4.4;
block_length = 12;
block_width = 5;
block_height = 6;
translate([center_offset, 20.5 + 15.5, z_offset])
cube([block_width, block_length, block_height]);
translate([-block_width - center_offset, 20.5 + 15.5, z_offset])
cube([block_width, block_length, block_height]);
}
module clip()
{
difference()
{
// base body
@ -89,11 +110,8 @@ module clip()
}
clip();
cable_break_preventer();

File diff suppressed because it is too large Load Diff