rsheldiii / KeyV2

KeyV2: A Parametric Mechanical Keycap Library
GNU General Public License v3.0
1.41k stars 180 forks source link

Stem Distance? #166

Open smayleeck opened 1 year ago

smayleeck commented 1 year ago

Hey there. I got Steelseries 6Gv2 keyboard and my spacebar's left and right stem is broken. I'm trying to make a new one with my 3d printer with openSCAD but cannot find where can i change stem distance or something like that. I'll be happy if you can help me.

Spacebar dimension: 6.25 units (118mm wide, 3 mounts, 40mm apart) One center mount and two mounts 2.1 units (40mm) left and right of the center

ignatio commented 1 year ago

If using customizer.scad edit the following:

module spacebar() {
  $inverted_dish = true;
  $dish_type = "sideways cylindrical";
  6_25u() stabilized(mm=50) children();
}

To:

module spacebar() {
  $inverted_dish = true;
  $dish_type = "sideways cylindrical";
  6_25u() stabilized(mm=40) children();
}

Then at the bottom of the file:

spacebar() key();

Then this: image

Becomes:

image

All this aside from setting your profile and other things.