Created
March 30, 2022 16:25
-
-
Save ednisley/26e9cb414785d7a2565313b834cb6c93 to your computer and use it in GitHub Desktop.
OpenSCAD source code: Micro-USB plug stabilizer for LED light pad
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Bracket to protect USB jack on LitUp LED Pad | |
// Ed Nisley KE4ZNU 2022-03-28 | |
Protrusion = 0.1; // make holes end cleanly | |
Pad = [10.0,30.0,1.2]; | |
Plug = [8.0,10.5 + 0.5,8.0]; | |
BasePlate = [Pad.x + Plug.x,Pad.y,Pad.z]; | |
//---------- | |
// Create parts | |
module Stiffener() { | |
difference() { | |
union() { | |
translate([-Pad.x,-BasePlate.y/2,0]) | |
cube(BasePlate,center=false); | |
translate([0,-Pad.y/2,0]) | |
cube([Plug.x,Pad.y,Plug.z],center=false); | |
} | |
translate([-Protrusion,-Plug.y/2,-Protrusion]) | |
cube(Plug + [2*Protrusion,0,Plug.z],center=false); | |
} | |
} | |
//---------- | |
// Build them | |
Stiffener(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
More details on my blog at https://wp.me/poZKh-aP4