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

Add a support in the case behind the micro-usb #9

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
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
12 changes: 11 additions & 1 deletion hardware/case/case.scad
Original file line number Diff line number Diff line change
Expand Up @@ -224,6 +224,16 @@ module case_top()
rotate([0,0,180])
screw_edge_tap();
}
// micro-usb adapter support
translate([10.2,71.5,-5.6])
rotate([0,-90,180])
linear_extrude(2.6)
polygon([[0,0], [0,1], [5,5], [5,0]]);
// guidance cuboid to indicate where the back of the micro-usb connector is
//color("orange")
// translate([10.2,71.5,-5.6])
// cube([2.6,1,1]);

translate([11, 30, 0.9])
{
rotate([0,0,90])
Expand Down Expand Up @@ -311,7 +321,7 @@ module case_bottom()
// render the entire assembly as it should be when put together
module render_whole_assembly()
{
translate([0,0,-9])
translate([0,0,-8.1])
board();
translate([2.5,2.5,0])
color([1,1,1,0.5])
Expand Down