simple keyboard spacer

This commit is contained in:
2025-01-03 18:49:14 -07:00
parent ed52ccb72e
commit e7c8d9ab68
2 changed files with 25 additions and 12 deletions

25
pc/kbd_spacer.scad Normal file
View File

@ -0,0 +1,25 @@
// Spacer between kbd plate and pcb
// ref:
// plate thick: 1.3
// other spacer gap at edge: 3.7
screwDiam=2.2;
eeWidth=5;
thickness=3.7;
$fn = 40;
difference(){
cube([eeWidth, eeWidth, thickness * 2], center=true);
translate([0, 0, -22]){
cylinder(d=screwDiam, 44);
}
translate([0, 0, -22]){
cube([44, 44, 44], center=true);
}
}