Skip to content

Commit

Permalink
include option for specifying if the faceplate is to be cut out
Browse files Browse the repository at this point in the history
  • Loading branch information
b-kelly committed Mar 20, 2021
1 parent b223174 commit a13320d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion enclosure.scad
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ includePosts = false;
includeEnclosure = true;
includeSwitchInsert = true;
includeFaceplate = true;
cutOutFaceplate = true;

// number of keys are in a single row
columnCount = 3;
Expand Down Expand Up @@ -144,7 +145,7 @@ difference()
microUsbCutout();

// cut out the front plate so we can print it separately
if (includeFaceplate)
if (includeFaceplate || cutOutFaceplate)
translate([encWidth - wallWidth, wallWidth * 2, 0])
rotate([0, 0, 0])
facePlate(false);
Expand Down

0 comments on commit a13320d

Please sign in to comment.