reinforce front panel on keystone2

`plateThickness` parameter was not being passed to `keystone2()`, leading to very thin front panel that is easily cracked by keystone insertion.
This commit is contained in:
2025-06-13 16:54:08 +00:00
parent 774474e0f0
commit a27a0f08a2

View File

@ -27,7 +27,7 @@ module patchPanel(slots, plateThickness = 3, screwToXEdge = 4.5, screwToYEdge =
translate([leftRailScrewToSlots + keystoneSpacing / 2 + i * keystoneSpacing, uDiff, -plateThickness])
let (slot = slots[i])
if (slot == 1) keystone1(outerWidth = keystoneSpacing, outerHeight = plateHeight);
else if (slot == 2) keystone2(outerWidth = keystoneSpacing, outerHeight = plateHeight);
else if (slot == 2) keystone2(plateThickness = plateThickness, outerWidth = keystoneSpacing, outerHeight = plateHeight);
else if (slot == 3) plate(outerWidth = keystoneSpacing, outerHeight = plateHeight, thickness = plateThickness);
else if (slot == 4) plate(outerWidth = keystoneSpacing, outerHeight = plateHeight, thickness = 5.9);
else if (slot == 5) plate(outerWidth = keystoneSpacing, outerHeight = plateHeight, thickness = 9.9);