chiark / gitweb /
sleepphone-cable-box: wip
authorIan Jackson <ijackson@chiark.greenend.org.uk>
Sun, 9 Sep 2018 23:33:36 +0000 (00:33 +0100)
committerIan Jackson <ijackson@chiark.greenend.org.uk>
Sun, 9 Sep 2018 23:33:36 +0000 (00:33 +0100)
Signed-off-by: Ian Jackson <ijackson@chiark.greenend.org.uk>
sleepphone-cable-box.scad

index 9b7c9cde89ae85da068a5628ef04f305b5f1b3dc..d422420967b9656e160dcba37bfe55456f047416 100644 (file)
@@ -3,7 +3,7 @@
 include <funcs.scad>
 
 wall = 0.75 * [1,1,1];
-phone = [ 76.40, 30.96, 6.26 ];
+phone = [ 76.40, 30.96, 6.26 ]; // includes socket
 phone_button_z = 6.58;
 minwall = 0.25;
 
@@ -23,6 +23,10 @@ plug_minw=   6.53 + 0.35;
 plug_sllen=  6.50;
 plug_totlen = 84.90; // to maxw, including phone
 
+plug_h = 6.5;
+plug_tooth_h = 0.5;
+plug_tooth_dy = 0.5;
+
 keeper_prong = 2;
 
 // calculated
@@ -33,6 +37,14 @@ top_z = max( phone[2] + wall[2],
 
 plugkeeper_x_maxw = phone[0] - plug_totlen;
 
+plugkeeper_p_max = [ 0, plug_maxw/2 ];
+plugkeeper_p_min = [ -plug_sllen, plug_minw/2 ];;
+plugkeeper_d_u = unitvector2d(
+                 clockwise2d(
+                 vecdiff2d( plugkeeper_p_max, plugkeeper_p_min )
+                            )
+                            );
+
 module MainProfileInnerHalf(){
   p = phone + phone_slop;
   pb = phone_button_z + phone_slop[2];
@@ -69,10 +81,10 @@ module BoxMain(){
   }
 }
 
-module PlugKeeperProfile(){
-  p_max = [ 0, plug_maxw/2 ];
-  p_min = [ -plug_sllen, plug_minw/2 ];
-  d = unitvector2d(clockwise2d(vecdiff2d(p_min, p_max))) * keeper_prong;
+module PlugKeeperProfileHalf(){
+  p_max = plugkeeper_p_max;
+  p_min = plugkeeper_p_min;
+  d = plugkeeper_d_u * keeper_prong;
   
   translate([ plugkeeper_x_maxw, 0 ]) {
     polygon([ p_min,
@@ -82,6 +94,19 @@ module PlugKeeperProfile(){
   }
 }
 
+module PlugKeeper(){
+  for (m=[0,1]) mirror([0,m,0]) {
+      translate([0,0, -wall[2]])
+       linear_extrude(height=plug_h + wall[2])
+       PlugKeeperProfileHalf();
+
+      translate([0, 0, plug_h - plug_tooth_h])
+       linear_extrude(height= plug_tooth_h)
+       translate(plugkeeper_d_u * -plug_tooth_dy)
+       PlugKeeperProfileHalf();
+    }
+}
+
 module Box(){
   difference(){
     BoxMain();
@@ -89,8 +114,10 @@ module Box(){
     translate([ led[0], phone[1]/2 - led[1], 1 ])
       cylinder(r = led_dia/2, h= phone[2]*2, $fn=20);
   }
+
+  PlugKeeper();
 }
 
 //MainProfileInner();
 Box();
-linear_extrude(h=1) PlugKeeperProfile();
+