chiark / gitweb /
digispark-with-cable: wip progress
[reprap-play.git] / digispark-with-cable.scad
index 90f42bc9c5982c535c26295965292a13507175b6..3c9169de672eaf396ddef929c37e3c387ba629fd 100644 (file)
@@ -11,7 +11,7 @@ usb_tongue_w_slop = +0.5;
 usb_wall_h = 4.54 - 2.04;
 usb_ceil_th = 0.425;
 
-side_wall_th = 1.5;
+side_wall_th = 1.5; // XXXX rename wall_th
 
 board_l = 17.56 + 0.2;
 board_w = 19.14 + 0.2;
@@ -23,7 +23,6 @@ front_wall_th = 0.75;
 // egress_w = 8.0;
 
 wall_y_min = -board_l - side_wall_th; // XXXX remove
-main_y_min = -board_l - side_wall_th;
 ceil_y_min = wall_y_min - 5;;
 
 small_walls = [
@@ -42,21 +41,32 @@ strain_pitch_along = 10;
 strain_groove_d = 2;
 strain_groove_w = 3;
 
+cover_strap_c_d_y = 5.5; // from front of board
+cover_registration_sz_y = 2;
+cover_registration_sz_z = 3;
+
 cable_space_z = 6;
+cable_dia = 5;
 bottom_floor_th = 1.5;
 
 fit_gap_z = 0.5;
+fit_gap_y = 0.25;
 side_x_gap = 0.5;
 
-cover_ceil_th = 0.425;
+cover_ceil_th = 0.9;
 
 // calculated
 
+strap_w = strain_w;
+strap_cutout_x = side_wall_th * 2;
+strap_cutout_z = side_wall_th;
+
 top_top_z = usb_wall_h;
 top_base_z = -board_th;
 bottom_base_z = top_base_z - cable_space_z - bottom_floor_th;;
 
 front_y_max = front_wall_th;
+main_y_min = -board_l - side_wall_th;
 
 strain_0_y_c = main_y_min - strain_w/2;
 strain_1_y_c = strain_0_y_c - strain_pitch_along;
@@ -69,13 +79,33 @@ cover_top_z  = top_top_z + cover_ceil_th;
 top_side_wall_x = +board_w/2 + side_wall_th;
 total_side_wall_x = top_side_wall_x + side_wall_th + side_x_gap;
 
+cover_registration_c_dy = -cover_strap_c_d_y - strap_w/2
+  - side_wall_th - cover_registration_sz_y/2;
+
 module BothSides(){
   for (m=[0,1]) {
-    mirror([m,0]) {
+    mirror([m,0,0]) {
       children();
     }
   }
 }
+module StrapCutouts(y_c, z_top){
+  for (z = [ bottom_base_z, z_top ]) {
+    BothSides(){
+      translate([ -total_side_wall_x, y_c, z_top ]) {
+       cube([ strap_cutout_x*2,
+              strap_w,
+              strap_cutout_z*2 ],
+            center=true);
+      }
+    }
+  }
+}
+
+module CoverStrapCutouts(){
+  StrapCutouts( -cover_strap_c_d_y, cover_top_z );
+}
+
 module FrontWallsPlan(slop) {
   BothSides(){
     rectfromto([ -board_w/2 - side_wall_th,    0             ],
@@ -115,6 +145,21 @@ module TopMainWallsPlan() {
             [ +board_w/2 + side_wall_th,            total_y_min ]);
 }
 
+module CoverRegistrations(){
+  linextr_y_xz(cover_registration_c_dy - strap_w/2,
+              cover_registration_c_dy + strap_w/2) {
+    difference(){
+      rectfromto([ -total_side_wall_x,
+                         cover_wall_bot_z - cover_registration_sz_z  ],
+                [ +total_side_wall_x, cover_top_z ]);
+      hull(){
+       TopElevationForCutout();
+       translate([0, -20]) TopElevationForCutout();
+      }
+    }
+  }
+}
+
 module Top(){ ////toplevel
   difference(){
     union(){
@@ -124,6 +169,10 @@ module Top(){ ////toplevel
        TopCeilPlan();
       linextr(-board_th, usb_wall_h)
        TopMainWallsPlan();
+      BothSides()
+       linextr(cover_wall_bot_z, top_top_z)
+        rectfromto([ -(board_w/2 + 0.1),  total_y_min             ],
+                  [ -total_side_wall_x,  main_y_min - fit_gap_y  ]);
     }
 
     for (y_c = [strain_0_y_c, strain_1_y_c]) {
@@ -150,13 +199,35 @@ module BottomMainElevation(){
               [ +total_side_wall_x, bottom_wall_top_z    ]);
 
     TopElevationForCutout();
-    rectfromto([ -board_w/2, bottom_base_z + bottom_floor_th ],
-              [ +board_w/2, 20         ]);
   }
 }
 module Bottom(){ ////toplevel
-  linextr_y_xz(total_y_min, front_y_max)
-    BottomMainElevation();
+  difference(){
+    union(){
+      linextr_y_xz(total_y_min, front_y_max)
+       BottomMainElevation();
+    }
+
+    linextr_y_xz(total_y_min + side_wall_th,
+                front_y_max - side_wall_th)
+      rectfromto([ -board_w/2, bottom_base_z + bottom_floor_th ],
+                [ +board_w/2, 20         ]);
+
+    linextr_y_xz(total_y_min - 1,
+                total_y_min + side_wall_th + 1){
+      translate([ 0, top_base_z ]){
+       hull(){
+         translate([ 0, -cable_dia/2 ])
+           circle(r = cable_dia/2, $fa = 10, $fs = 1);
+         square([ cable_dia, 0.1 ], center=true);
+       }
+      }
+    }
+    minkowski(){
+      CoverRegistrations();
+      cube([ 1, fit_gap_y*2, fit_gap_z*2 ], center=true);
+    }
+  }
 }
 
 module CoverMainElevation(){
@@ -168,8 +239,14 @@ module CoverMainElevation(){
   }
 }
 module Cover(){ ////toplevel
-  linextr_y_xz(main_y_min, front_y_max)
-    CoverMainElevation();
+  difference(){
+    union(){
+      linextr_y_xz(main_y_min, front_y_max)
+       CoverMainElevation();
+      CoverRegistrations();
+    }
+    CoverStrapCutouts();
+  }
 }
 
 module BottomDemo(){ ////toplevel