feat: switch to an m5 self tapping screw

This commit is contained in:
2026-07-20 16:33:41 -05:00
parent dae718e21e
commit e12eb10909
+5 -1
View File
@@ -12,6 +12,10 @@ def build_mop_scraper_holder(center_thickness: float):
clamp_length = 30
screw_diameter = 4.75
screw_head_diameter = 9.6
screw_head_depth = 4
with BuildPart() as mop_scraper_holder:
with BuildSketch() as profile:
with BuildLine():
@@ -40,7 +44,7 @@ def build_mop_scraper_holder(center_thickness: float):
fillet(mop_scraper_holder.edges().filter_by(Axis.Z), (arms_thickness - 0.01) / 2)
with Locations(Plane((screw_pos.X, screw_pos.Y, 0)).rotated((-90, 0, 0))):
CounterBoreHole(3 / 2, 5.6 / 2, 3.2)
CounterBoreHole(screw_diameter / 2, screw_head_diameter / 2, screw_head_depth)
return mop_scraper_holder