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

Merge branch 'master' of git.services.c3pb.de:fxk8y/CyanLight

parents 98a2d9a2 ba7c232e
No related branches found
No related tags found
No related merge requests found
......@@ -8,16 +8,17 @@ $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
pcb_sc_off = 5; // offset of screw holes from edge
pcb_conn_w = 20;
pcb_conn_h = 3;
pcb_w = 40.5;
pcb_h = 67.5;
pcb_r = 5; // edge radius
pcb_off = 0.4;
pcb_t = 5 +1; // thickness including LED and inductor
pcb_sc_off = 5; // offset of screw holes from edge
pcb_conn_w = 20;
pcb_conn_h = 3;
box_str = 3; // Material strength
box_str = 3; // Material strength
box_h = pcb_t + 2;
module pcb(w=pcb_w, h=pcb_h, r=pcb_r, off=pcb_off) {
......@@ -134,9 +135,9 @@ module outerRing(w=pcb_w, h=pcb_h, r=pcb_r, off=pcb_off, _str=box_str) {
TpOrChamfer = 3;
module TransportProtection(w=pcb_w, h=pcb_h, r=pcb_r, height=pcb_t, off=pcb_off, _str=box_str) {
module TransportProtection(w=pcb_w, h=pcb_h, r=pcb_r, height=pcb_t, off=pcb_off, _str=box_str, _boxH=box_h) {
_h = height + 2;
_h = _boxH + 2;
difference() {
body(w, h, r, _h, off, _str);
......
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