Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@ednisley
Created March 30, 2022 16:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ednisley/26e9cb414785d7a2565313b834cb6c93 to your computer and use it in GitHub Desktop.
Save ednisley/26e9cb414785d7a2565313b834cb6c93 to your computer and use it in GitHub Desktop.
OpenSCAD source code: Micro-USB plug stabilizer for LED light pad
// 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();
@ednisley
Copy link
Author

More details on my blog at https://wp.me/poZKh-aP4

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment