Skip to content

Commit

Permalink
feat(case): MCU cover
Browse files Browse the repository at this point in the history
  • Loading branch information
azzamsa committed Nov 24, 2024
1 parent 25d4c67 commit 2da24ac
Showing 1 changed file with 20 additions and 8 deletions.
28 changes: 20 additions & 8 deletions case/cheapino-top-left.scad
Original file line number Diff line number Diff line change
Expand Up @@ -40,13 +40,9 @@ mounting_hole_inserts();
}




// RJ45 socket

// RJ45 socket cover
translate([0,0,9.1])
rotate([0,180,0])
// RJ45 socket cover
color("purple") {
difference() {
// x = front/back, y = left/right
Expand All @@ -68,7 +64,23 @@ rotate([0,180,0])
}
}

// MCU cover
translate([0,0,9.1])
rotate([0,180,0])
color("gray") {
difference() {
// x = left/right, y = front/back
translate([29.5 - 2, 10.2 - 2, 4.1])
// MCU+hotswap height is 9mm
// I set 11, then I will use a difference to get 9mm
linear_extrude(11)
// width = left/right, height = front/back
// Add thickness of 4. 2 left 2 right.
square([19.5 + 4, 25 + 2]);




// repeat the difference() for initial mcu cutout
translate([29.2, 10.2, 4.1])
linear_extrude(9)
square([19.5, 25]);
}
}

0 comments on commit 2da24ac

Please sign in to comment.