make dustwasher hole a bit bigger to let the lever move

This commit is contained in:
Brian S. Stephan 2023-09-07 19:12:20 -05:00
parent ee3dd23b36
commit 0329dd2b3c
Signed by: bss
GPG Key ID: 3DE06D3180895FCB
1 changed files with 2 additions and 1 deletions

View File

@ -21,7 +21,8 @@ include <components.scad>
module lsx_nobi_dustwasher() {
difference() {
cylinder(r=jumbo_decorative_radius+5+hole_tolerance, h=2, $fn=50, center=true);
cylinder(r=5+hole_tolerance, h=2.1, $fn=50, center=true);
// 5.5 = 5 (diameter of shaft is 10mm) + .5 to let it take an angle
cylinder(r=5.5+hole_tolerance, h=2.1, $fn=50, center=true);
}
}