diff options
author | xengineering <me@xengineering.eu> | 2024-01-03 11:18:28 +0100 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2024-01-03 11:25:03 +0100 |
commit | 9d87552f99b70ea9d8a8037b67e9be240f5957ce (patch) | |
tree | fca22a7ffc8de268759094977a1fc504e12e9fda /mech/production.scad | |
parent | 7763f3f158c56cc3a8478d403156fe507646c181 (diff) | |
download | soundbox-9d87552f99b70ea9d8a8037b67e9be240f5957ce.tar soundbox-9d87552f99b70ea9d8a8037b67e9be240f5957ce.tar.zst soundbox-9d87552f99b70ea9d8a8037b67e9be240f5957ce.zip |
mech: Switch to custom front panel
The front panel needs holes for the HDMI, micro USB and cinch connectors
of the Raspberry Pi Zero W.
Diffstat (limited to 'mech/production.scad')
-rw-r--r-- | mech/production.scad | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/mech/production.scad b/mech/production.scad index 448a439..1485a39 100644 --- a/mech/production.scad +++ b/mech/production.scad @@ -1,5 +1,7 @@ include <parameters.scad> +use <panel_front.scad> + use <pcb_case/conversion.scad> use <pcb_case/shell.scad> use <pcb_case/panel.scad> @@ -23,7 +25,7 @@ module production() { translate([dim[0], dim[1]+spacing, 0]) rotate([0, -90, 0]) translate([2*t-dim[0], -t, -t]) - pcb_case_panel_front(pcb_dim, margins, t); + panel_front(pcb_dim, margins, t); } production(); |