diff options
author | xengineering <me@xengineering.eu> | 2024-01-01 17:28:46 +0100 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2024-01-02 15:16:53 +0100 |
commit | 187cf96353817701bb49d51117f2dd4f5099e597 (patch) | |
tree | 85e4b09e80a2037a4e10bdcb79e3f5c6b04db8fa /mech/assembly.scad | |
parent | 3cae9130dfd27f5a18938afd19a8ab91202ea75f (diff) | |
download | soundbox-187cf96353817701bb49d51117f2dd4f5099e597.tar soundbox-187cf96353817701bb49d51117f2dd4f5099e597.tar.zst soundbox-187cf96353817701bb49d51117f2dd4f5099e597.zip |
mech: pcb_case: Visualize PCB
This will help to identify calculation issues by human visual
inspection. The PCB is not yet aligned.
Diffstat (limited to 'mech/assembly.scad')
-rw-r--r-- | mech/assembly.scad | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/mech/assembly.scad b/mech/assembly.scad index 3df96c8..9111439 100644 --- a/mech/assembly.scad +++ b/mech/assembly.scad @@ -2,8 +2,19 @@ use <bottom.scad> use <top.scad> use <back.scad> use <front.scad> +use <pcb_case/pcb.scad> module assembly() { + base_drilling = [3.5, 3.5]; + dx = [23, 0]; + dy = [0, 58]; + pcb([30, 65, 1.4], [ + base_drilling, + base_drilling + dx, + base_drilling + dy, + base_drilling + dx + dy] + ]); + bottom(); // top(); back(); |