chiark / gitweb /
digispark-with-cable: wip progress
authorIan Jackson <ijackson@chiark.greenend.org.uk>
Tue, 17 Oct 2023 21:52:04 +0000 (22:52 +0100)
committerIan Jackson <ijackson@chiark.greenend.org.uk>
Thu, 26 Oct 2023 17:10:37 +0000 (18:10 +0100)
Signed-off-by: Ian Jackson <ijackson@chiark.greenend.org.uk>
digispark-with-cable.scad

index 1f7034dc03ca096199af1e469503e1b9f548995e..151963a79959ede517c08f81e706c3ed6d2e4a13 100644 (file)
@@ -60,7 +60,7 @@ cover_strap_sz_x = side_wall_th * 3.5;
 // calculated
 
 strap_w = strain_w;
-strap_cutout_z = side_wall_th;
+cover_strap_cutout_z = side_wall_th;
 
 top_top_z = usb_wall_h;
 top_base_z = -board_th;
@@ -96,12 +96,13 @@ module StrapCutouts(y_c, z_top, top_sz_x){
       translate([ -total_side_wall_x, y_c, z_top ])
        cube([ top_sz_x*2,
               strap_w,
-              strap_cutout_z*2 ],
+              cover_strap_cutout_z*2 ],
             center=true);
       translate([ -total_side_wall_x, y_c, bottom_base_z ])
-       cube([ side_wall_th * 0.75,
+       rotate([0, -45, 0])
+       cube([ side_wall_th,
               strap_w,
-              strap_cutout_z*2 ],
+              10 ],
             center=true);
     }
   }