Skip to content
Snippets Groups Projects
Commit ff47ca58 authored by fxk8y's avatar fxk8y :spider:
Browse files

Adding transport protection device

parent 4cc4a03e
No related branches found
No related tags found
No related merge requests found
$fs = 0.5;
$fa = 1.0;
pcb_w = 40.5;
pcb_h = 67.5;
pcb_r = 5; // edge radius
pcb_off = 0.4;
pcb_t = 5; // thickness including LED and inductor
module pcb(w=pcb_w, h=pcb_h, r=pcb_r, off=pcb_off) {
_w = w + 2*off;
_h = h + 2*off;
_r = r + off;
hull() for (tx=[_r, _w-_r], ty=[_r, _h-_r]) translate([tx, ty, 0]) circle(r=r);
}
module pcbBox(wi, hi, ri, _str) {
linear_extrude(_str) pcb();;
}
pcbBox();
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment