From: Ian Jackson Date: Tue, 17 Oct 2023 21:52:04 +0000 (+0100) Subject: digispark-with-cable: wip progress X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=reprap-play.git;a=commitdiff_plain;h=1a2c41c51afdb42dc05b963e729af000fda4ccb5 digispark-with-cable: wip progress Signed-off-by: Ian Jackson --- diff --git a/digispark-with-cable.scad b/digispark-with-cable.scad index 1f7034d..151963a 100644 --- a/digispark-with-cable.scad +++ b/digispark-with-cable.scad @@ -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); } }