Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding cable breakage preventing protusions to the back of the heatbed-cable-cover-clip #162

Open
wants to merge 3 commits into
base: MK3S
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 23 additions & 5 deletions Printed-Parts/SCAD/heatbed-cable-cover-clip.scad
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -89,11 +110,8 @@ module clip()

}





clip();
cable_break_preventer();



Expand Down
Loading