summaryrefslogtreecommitdiff
path: root/case/pcb_case/bolt.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/bolt.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/bolt.scad')
-rw-r--r--case/pcb_case/bolt.scad13
1 files changed, 13 insertions, 0 deletions
diff --git a/case/pcb_case/bolt.scad b/case/pcb_case/bolt.scad
new file mode 100644
index 0000000..4c26c30
--- /dev/null
+++ b/case/pcb_case/bolt.scad
@@ -0,0 +1,13 @@
+// bolt based on ISO 4762 (https://www.fasteners.eu/us/standards/ISO/4762)
+bolt_k = 3;
+bolt_l = 10;
+bolt_dk = 5.5;
+bolt_ds = 3;
+bolt_ds_tol = 0.45;
+
+module bolt() {
+ union() {
+ cylinder(d=bolt_ds, h=bolt_l, $fn=30);
+ translate([0, 0, -bolt_ds]) cylinder(d=bolt_dk, h=bolt_ds, $fn=30);
+ }
+}