diff options
author | xengineering <me@xengineering.eu> | 2024-01-01 18:10:07 +0100 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2024-01-02 15:16:53 +0100 |
commit | 35ec58bf32d9a8706e9c0e7c42d40a59bd793319 (patch) | |
tree | ff69482b83bdabd2fb2cb7b97ebb73616ecf0da3 /mech/assembly.scad | |
parent | 187cf96353817701bb49d51117f2dd4f5099e597 (diff) | |
download | soundbox-35ec58bf32d9a8706e9c0e7c42d40a59bd793319.tar soundbox-35ec58bf32d9a8706e9c0e7c42d40a59bd793319.tar.zst soundbox-35ec58bf32d9a8706e9c0e7c42d40a59bd793319.zip |
mech: Set correct position for PCB
Diffstat (limited to 'mech/assembly.scad')
-rw-r--r-- | mech/assembly.scad | 21 |
1 files changed, 15 insertions, 6 deletions
diff --git a/mech/assembly.scad b/mech/assembly.scad index 9111439..fdb859b 100644 --- a/mech/assembly.scad +++ b/mech/assembly.scad @@ -8,12 +8,21 @@ 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] - ]); + pcb( + dim=[30, 65, 1.4], + drillings=[ + base_drilling, + base_drilling + dx, + base_drilling + dy, + base_drilling + dx + dy + ], + margins=[ + [1, 1], + [3.6, 1.7], + [3.5, 9] + ], + t=2 + ); bottom(); // top(); |