Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions includes.scad
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@ include <src/key_types.scad>
include <src/key_transformations.scad>
include <src/key_helpers.scad>
include <src/key_layouts.scad>
include <src/alignment_tool.scad>
15 changes: 15 additions & 0 deletions src/alignment_tool.scad
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
include <./includes.scad>

// Tool for keeping switches aligned while soldering
// Keep the bar high enough that when the keyboard is upside down the switches can be fully depressed

module alignment_tool(layout=[[1,1,1,1,1]], bar_height=$stem_throw*1.2) {
bar_width=unit/2;
simple_layout(layout)
stem($stem_type, $stem_throw, $stem_slop, $stem_throw);
hull() {
simple_layout(layout)
translate([-unit/2,-bar_width/2,$stem_throw])
cube([unit,bar_width,bar_height]);
}
}