chiark / gitweb /
fairphone-case: fix CaseAperture (nfc)
[reprap-play.git] / fairphone-case.scad
index a1e87439da9ea2d7fca350d8d010bbef2f389b02..238abba51865f76367ccbe737b284ce737b53890 100644 (file)
@@ -18,6 +18,11 @@ phone_backside_slope_outer = 1.0; // larger means shallower
 camera_pos_tl = [  6.450, 12.750 ]; // measured from tl corner
 camera_pos_br = [ 22.300, 37.600 ]; // tl/br as seen from back
 
+jack_pos = [ 13.92, 7.96 ];
+jack_dia = 9.1 + .5; // some jack I had lying around
+
+noisecancelmic_pos = [ 19.54, 7.37 ];   // from rhs
+
 case_th_bottom = 2.5;
 case_th_lid = 2.5;
 case_th_side = 2;
@@ -58,6 +63,8 @@ strut_min_at_end = 1.5;
 phone_width =  (phone + bumper*2)[0];
 phone_height = (phone + bumper*2)[1];
 
+inside_br = [phone_width, -phone_height];
+
 //echo(camera_pos_tl + bumper,
 //     camera_pos_br + bumper);
 
@@ -259,6 +266,16 @@ module AroundEdges(fill_zstart, fill_th, fill_downwards=0){
               [phone_width, -phone_height] + [-1,+1] * phone_cnr_rad);
 }
 
+module CaseAperture(pos, dia, $fn) {
+  theta = 180/$fn;
+  translate([ pos[0] + bumper[0],
+             -epp2i[0],
+             -pos[1] ])
+    rotate([-90, theta, 0])
+    cylinder(r = dia/2 / cos(theta),
+            h = 60);
+}
+
 module SideButton(y, y_ref_sign, l){
   // y_ref_sign:
   //   +1  measured from top    of actual phone to top    of button
@@ -369,6 +386,9 @@ module Case(){ ////toplevel
            ButtonPlan($button_l, 1,1);
         }
     }
+
+    // apertures along top edge
+    CaseAperture(jack_pos, jack_dia, 8);
   }
 }
 
@@ -418,7 +438,10 @@ module TestWidth(){ ////toplevel
 }
 
 module TestLidWidthPrint(){ ////toplevel
-  rotate([0,180.0]) TestLidWidth();
+  rotate([0,180.0]) intersection(){
+    Lid();
+    TestSelectWidth();
+  }
 }
 
 module TestSelectCamera(){
@@ -470,6 +493,34 @@ module LidPrint(){ ////toplevel
     Lid();
 }
 
+module TestSelectFrame(){
+  include = [1,-1] * (epp2i[0] + 4);
+
+  difference(){
+    cube(1000, center=true);
+    translate([0,0, -100])
+      linear_extrude(height=200)
+      rectfromto(include,  inside_br - include);
+  }
+}
+
+module TestFrameCase(){ ////toplevel
+  intersection(){
+    Case();
+    union(){
+      TestSelectFrame();
+      TestSelectCamera();
+    }
+  }
+}
+
+module TestFrameLidPrint(){ ////toplevel
+  rotate([0,0,180]) intersection(){
+    Lid();
+    TestSelectFrame();
+  }
+}
+
 module Keeper(){ ////toplevel
   CaseBase_rhsflip()
     OneKeeper();