KeyV2 icon indicating copy to clipboard operation
KeyV2 copied to clipboard

Stem Distance?

Open smayleeck opened this issue 3 years ago • 1 comments

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

smayleeck avatar Jul 04 '22 10:07 smayleeck

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.

ignatio avatar Oct 12 '22 20:10 ignatio