summaryrefslogtreecommitdiff
path: root/case/pcb_case/pcb.scad
diff options
context:
space:
mode:
authorxengineering <me@xengineering.eu>2024-12-24 12:39:34 +0100
committerxengineering <me@xengineering.eu>2024-12-26 12:06:36 +0100
commitdb966c966929dd3abc29ebab7ce47d638ba4a94f (patch)
treeaf2b844a2938de1698712642261bc2f8aa52732a /case/pcb_case/pcb.scad
parent03d41e8069623b5d627dfb298c471a16c380c91d (diff)
downloadsoundbox-db966c966929dd3abc29ebab7ce47d638ba4a94f.tar
soundbox-db966c966929dd3abc29ebab7ce47d638ba4a94f.tar.zst
soundbox-db966c966929dd3abc29ebab7ce47d638ba4a94f.zip
WIP: Move `mech` directory to `case`
TODO: There are outdated references (see grep -R mech .) The directory name should reflect what is inside, not the field of engineering it belongs to.
Diffstat (limited to 'case/pcb_case/pcb.scad')
-rw-r--r--case/pcb_case/pcb.scad14
1 files changed, 14 insertions, 0 deletions
diff --git a/case/pcb_case/pcb.scad b/case/pcb_case/pcb.scad
new file mode 100644
index 0000000..7b24131
--- /dev/null
+++ b/case/pcb_case/pcb.scad
@@ -0,0 +1,14 @@
+include <bolt.scad>
+include <nut.scad>
+
+module pcb(dim, drillings, margins, t) {
+ translate([2*t+margins[0][0], bolt_l+margins[1][0], t+margins[2][0]]) {
+ difference() {
+ cube([dim[0], dim[1], dim[2]]);
+ for (drilling = drillings) {
+ translate([drilling[0], drilling[1], 0])
+ cylinder(d=3, h=dim[2], $fn=30);
+ }
+ }
+ }
+}