forked from tshort/dactyl-keyboard
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
80 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
diff --git a/src/dactyl_keyboard/dactyl.clj b/src/dactyl_keyboard/dactyl.clj | ||
index d8861fb..e58302f 100644 | ||
--- a/src/dactyl_keyboard/dactyl.clj | ||
+++ b/src/dactyl_keyboard/dactyl.clj | ||
@@ -13,13 +13,13 @@ | ||
;; Shape parameters ;; | ||
;;;;;;;;;;;;;;;;;;;;;; | ||
|
||
-(def nrows 4) | ||
-(def ncols 5) | ||
+(def nrows 4) | ||
+(def ncols 6) | ||
|
||
(def α (/ π 12)) ; curvature of the columns | ||
(def β (/ π 36)) ; curvature of the rows | ||
(def centerrow (- nrows 3)) ; controls front-back tilt | ||
-(def centercol 3) ; controls left-right tilt / tenting (higher number is more tenting) | ||
+(def centercol 2) ; controls left-right tilt / tenting (higher number is more tenting) | ||
(def tenting-angle (/ π 12)) ; or, change this for more precise tenting control | ||
(def column-style | ||
(if (> nrows 5) :orthographic :standard)) ; options include :standard, :orthographic, and :fixed | ||
@@ -32,7 +32,7 @@ | ||
|
||
(def thumb-offsets [6 -3 7]) | ||
|
||
-(def keyboard-z-offset 9) ; controls overall height; original=9 with centercol=3; use 16 for centercol=2 | ||
+(def keyboard-z-offset 16) ; controls overall height; original=9 with centercol=3; use 16 for centercol=2 | ||
|
||
(def extra-width 2.5) ; extra space between the base of keys; original= 2 | ||
(def extra-height 1.0) ; original= 0.5 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
diff --git a/src/dactyl_keyboard/dactyl.clj b/src/dactyl_keyboard/dactyl.clj | ||
index d8861fb..e58302f 100644 | ||
--- a/src/dactyl_keyboard/dactyl.clj | ||
+++ b/src/dactyl_keyboard/dactyl.clj | ||
@@ -13,13 +13,13 @@ | ||
;; Shape parameters ;; | ||
;;;;;;;;;;;;;;;;;;;;;; | ||
|
||
-(def nrows 4) | ||
-(def ncols 5) | ||
+(def nrows 6) | ||
+(def ncols 6) | ||
|
||
(def α (/ π 12)) ; curvature of the columns | ||
(def β (/ π 36)) ; curvature of the rows | ||
(def centerrow (- nrows 3)) ; controls front-back tilt | ||
-(def centercol 3) ; controls left-right tilt / tenting (higher number is more tenting) | ||
+(def centercol 2) ; controls left-right tilt / tenting (higher number is more tenting) | ||
(def tenting-angle (/ π 12)) ; or, change this for more precise tenting control | ||
(def column-style | ||
(if (> nrows 5) :orthographic :standard)) ; options include :standard, :orthographic, and :fixed | ||
@@ -32,7 +32,7 @@ | ||
|
||
(def thumb-offsets [6 -3 7]) | ||
|
||
-(def keyboard-z-offset 9) ; controls overall height; original=9 with centercol=3; use 16 for centercol=2 | ||
+(def keyboard-z-offset 16) ; controls overall height; original=9 with centercol=3; use 16 for centercol=2 | ||
|
||
(def extra-width 2.5) ; extra space between the base of keys; original= 2 | ||
(def extra-height 1.0) ; original= 0.5 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters