forked from vial-kb/vial-qmk
-
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.
Spilif: Keymap first working vial implementation
- Loading branch information
1 parent
b5df93d
commit 5ee0ed0
Showing
15 changed files
with
657 additions
and
69 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 |
---|---|---|
|
@@ -29,5 +29,5 @@ | |
#error "I2C not Supported" | ||
#endif | ||
|
||
#define MASTER_LEFT | ||
#define MASTER_LEFT | ||
#define SOFT_SERIAL_PIN D0 |
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
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
14 changes: 7 additions & 7 deletions
14
keyboards/handwired/sudocoffie/spilif/keymaps/vial/vial.json
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 |
---|---|---|
@@ -1,15 +1,15 @@ | ||
{ | ||
"matrix": { | ||
"rows": 5, | ||
"cols": 12 | ||
"rows": 10, | ||
"cols": 6 | ||
}, | ||
"layouts": { | ||
"keymap": [ | ||
["0,0","0,1","0,2","0,3","0,4","0,5",{"x":1.25},"5,0","5,1","5,2","5,3","5,4","5,5"], | ||
["1,0","1,1","1,2","1,3","1,4","1,5",{"x":1.25},"6,0","6,1","6,2","6,3","6,4","6,5"], | ||
["2,0","2,1","2,2","2,3","2,4","2,5",{"x":1.25},"7,0","7,1","7,2","7,3","7,4","7,5"], | ||
["3,0","3,1","3,2","3,3","3,4","3,5",{"x":1.25},"8,0","8,1","8,2","8,3","8,4","8,5"], | ||
[{"x":3},"4,3","4,4","4,5",{"x":1.25},"9,0","9,1","9,2"] | ||
["0,0","0,1","0,2","0,3","0,4","0,5","5,0","5,1","5,2","5,3","5,4","5,5"], | ||
["1,0","1,1","1,2","1,3","1,4","1,5","6,0","6,1","6,2","6,3","6,4","6,5"], | ||
["2,0","2,1","2,2","2,3","2,4","2,5","7,0","7,1","7,2","7,3","7,4","7,5"], | ||
["3,0","3,1","3,2","3,3","3,4","3,5","8,0","8,1","8,2","8,3","8,4","8,5"], | ||
["4,3","4,4","4,5","9,0","9,1","9,2"] | ||
] | ||
} | ||
} |
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
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,33 @@ | ||
// Copyright 2024 filip (@sudocoffie) | ||
// SPDX-License-Identifier: GPL-2.0-or-later | ||
|
||
#pragma once | ||
|
||
/* | ||
* Feature disable options | ||
* These options are also useful to firmware size reduction. | ||
*/ | ||
|
||
/* disable debug print */ | ||
//#define NO_DEBUG | ||
|
||
/* disable print */ | ||
//#define NO_PRINT | ||
|
||
/* disable action features */ | ||
//#define NO_ACTION_LAYER | ||
//#define NO_ACTION_TAPPING | ||
//#define NO_ACTION_ONESHOT | ||
|
||
#define VIAL_KEYBOARD_UID {0x42, 0x8E, 0x2E, 0x2D, 0xD5, 0xA7, 0x74, 0xA1} | ||
#define VIAL_UNLOCK_COMBO_ROWS { 0, 0 } | ||
#define VIAL_UNLOCK_COMBO_COLS { 0, 1 } | ||
#define VIAL_TAP_DANCE_ENTRIES 6 | ||
#define DYNAMIC_KEYMAP_LAYER_COUNT 4 | ||
|
||
#ifdef USE_I2C | ||
#error "I2C not Supported" | ||
#endif | ||
|
||
#define MASTER_LEFT | ||
#define SOFT_SERIAL_PIN D0 |
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 @@ | ||
qmk flash -kb handwired/sudocoffie/spilif -km vial |
Oops, something went wrong.