Merge pull request #112 from zshzebra/master

Add clearance to case for encoder and screw holes.
This commit is contained in:
Thomas Haukland
2024-12-29 14:27:27 +01:00
committed by GitHub
3 changed files with 3 additions and 3 deletions

Binary file not shown.

View File

@@ -39,7 +39,7 @@ mirror() {
color("pink") {
translate([32.75, 16.5, 4.1])
linear_extrude(10)
square(13);
square([13, 14.6]);
translate([32.2, 15, 4.1])
linear_extrude(3)

View File

@@ -174,10 +174,10 @@ module mcu() {
module mounting_hole() {
color("#bcbd22")
translate([45.85, -23, 0]) {
cylinder(h=1.5, r1=1, r2=2);
cylinder(h=1.5, r1=1, r2=2.2);
translate([0,0,1.5])
cylinder(h=4, r=2);
cylinder(h=4, r=2.2);
}
}