-
Notifications
You must be signed in to change notification settings - Fork 2.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Ktec/erogodone vial support #806
Open
QKekos
wants to merge
1
commit into
vial-kb:vial
Choose a base branch
from
QKekos:vial
base: vial
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+225
−0
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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,10 @@ | ||
/* SPDX-License-Identifier: GPL-2.0-or-later */ | ||
|
||
#pragma once | ||
|
||
#define VIAL_KEYBOARD_UID {0x4B, 0x44, 0x0D, 0xD5, 0x5C, 0xD6, 0x31, 0x78} | ||
|
||
#define VIAL_UNLOCK_COMBO_ROWS { 0, 0 } | ||
#define VIAL_UNLOCK_COMBO_COLS { 5, 6 } | ||
|
||
#define DYNAMIC_KEYMAP_LAYER_COUNT 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,156 @@ | ||
#include QMK_KEYBOARD_H | ||
#include "version.h" | ||
|
||
#define BASE 0 // default layer | ||
#define SYMB 1 // symbols | ||
|
||
enum custom_keycodes { | ||
VRSN = SAFE_RANGE, | ||
}; | ||
|
||
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
/* Keymap 0: Basic layer | ||
* | ||
* ,--------------------------------------------------. ,--------------------------------------------------. | ||
* | = | 1 | 2 | 3 | 4 | 5 | LEFT | | RIGHT| 6 | 7 | 8 | 9 | 0 | - | | ||
* |--------+------+------+------+------+-------------| |------+------+------+------+------+------+--------| | ||
* | Del | Q | W | E | R | T | L1 | | L1 | Y | U | I | O | P | \ | | ||
* |--------+------+------+------+------+------| | | |------+------+------+------+------+--------| | ||
* | BkSp | A | S | D | F | G |------| |------| H | J | K | L |; / L2|' / Cmd | | ||
* |--------+------+------+------+------+------| Hyper| | Meh |------+------+------+------+------+--------| | ||
* | LShift |Z/Ctrl| X | C | V | B | | | | N | M | , | . |//Ctrl| RShift | | ||
* `--------+------+------+------+------+-------------' `-------------+------+------+------+------+--------' | ||
* |Grv/L1| '" |AltShf| Left | Right| | Up | Down | [ | ] | ~L1 | | ||
* `----------------------------------' `----------------------------------' | ||
* ,-------------. ,-------------. | ||
* | App | LGui | | Alt |Ctrl/Esc| | ||
* ,------|------|------| |------+--------+------. | ||
* | | | Home | | PgUp | | | | ||
* | Space|Backsp|------| |------| Tab |Enter | | ||
* | |ace | End | | PgDn | | | | ||
* `--------------------' `----------------------' | ||
*/ | ||
// If it accepts an argument (i.e, is a function), it doesn't need KC_. | ||
// Otherwise, it needs KC_* | ||
[BASE] = LAYOUT_ergodox_80( // layer 0 : default | ||
// left hand | ||
KC_EQL, KC_1, KC_2, KC_3, KC_4, KC_5, KC_LEFT, | ||
KC_DEL, KC_Q, KC_W, KC_E, KC_R, KC_T, TG(SYMB), | ||
KC_BSPC, KC_A, KC_S, KC_D, KC_F, KC_G, | ||
KC_LSFT, CTL_T(KC_Z), KC_X, KC_C, KC_V, KC_B, ALL_T(KC_NO), | ||
LT(SYMB,KC_GRV),KC_QUOT, LALT(KC_LSFT), KC_LEFT,KC_RGHT, | ||
ALT_T(KC_APP), KC_LGUI, | ||
KC_SPC,KC_BSPC,KC_END, | ||
KC_SPC,KC_BSPC,KC_END, | ||
// right hand | ||
KC_RGHT, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS, | ||
TG(SYMB), KC_Y, KC_U, KC_I, KC_O, KC_P, KC_BSLS, | ||
KC_H, KC_J, KC_K, KC_L, KC_SCLN, GUI_T(KC_QUOT), | ||
MEH_T(KC_NO),KC_N, KC_M, KC_COMM,KC_DOT, CTL_T(KC_SLSH), KC_RSFT, | ||
KC_UP, KC_DOWN,KC_LBRC,KC_RBRC, TT(SYMB), | ||
KC_LALT, CTL_T(KC_ESC), | ||
KC_PGDN,KC_TAB, KC_ENT, | ||
KC_PGDN,KC_TAB, KC_ENT | ||
), | ||
/* Keymap 1: Symbol Layer | ||
* | ||
* ,---------------------------------------------------. ,--------------------------------------------------. | ||
* |Version | F1 | F2 | F3 | F4 | F5 | | | | F6 | F7 | F8 | F9 | F10 | F11 | | ||
* |---------+------+------+------+------+------+------| |------+------+------+------+------+------+--------| | ||
* | | ! | @ | { | } | | | | | | Up | 7 | 8 | 9 | * | F12 | | ||
* |---------+------+------+------+------+------| | | |------+------+------+------+------+--------| | ||
* | | # | $ | ( | ) | ` |------| |------| Down | 4 | 5 | 6 | + | | | ||
* |---------+------+------+------+------+------| | | |------+------+------+------+------+--------| | ||
* | | % | ^ | [ | ] | ~ | | | | & | 1 | 2 | 3 | \ | | | ||
* `---------+------+------+------+------+-------------' `-------------+------+------+------+------+--------' | ||
* | EE_CLR | | | | | | | . | 0 | = | | | ||
* `-----------------------------------' `----------------------------------' | ||
* ,-------------. ,-------------. | ||
* |Animat| | |Toggle|Solid | | ||
* ,------|------|------| |------+------+------. | ||
* |Bright|Bright| | | |Hue- |Hue+ | | ||
* |ness- |ness+ |------| |------| | | | ||
* | | | | | | | | | ||
* `--------------------' `--------------------' | ||
*/ | ||
// SYMBOLS | ||
[SYMB] = LAYOUT_ergodox_80( | ||
// left hand | ||
VRSN, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_TRNS, | ||
KC_TRNS,KC_EXLM,KC_AT, KC_LCBR,KC_RCBR,KC_PIPE,KC_TRNS, | ||
KC_TRNS,KC_HASH,KC_DLR, KC_LPRN,KC_RPRN,KC_GRV, | ||
KC_TRNS,KC_PERC,KC_CIRC,KC_LBRC,KC_RBRC,KC_TILD,KC_TRNS, | ||
EE_CLR,KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS, | ||
KC_TRNS,KC_TRNS, | ||
KC_TRNS,KC_TRNS,KC_TRNS, | ||
KC_TRNS,KC_TRNS,KC_TRNS, | ||
// right hand | ||
KC_TRNS, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, | ||
KC_TRNS, KC_UP, KC_7, KC_8, KC_9, KC_ASTR, KC_F12, | ||
KC_DOWN, KC_4, KC_5, KC_6, KC_PLUS, KC_TRNS, | ||
KC_TRNS, KC_AMPR, KC_1, KC_2, KC_3, KC_BSLS, KC_TRNS, | ||
KC_TRNS,KC_DOT, KC_0, KC_EQL, KC_TRNS, | ||
KC_TRNS, KC_TRNS, | ||
KC_TRNS, KC_TRNS, KC_TRNS, | ||
KC_TRNS, KC_TRNS, KC_TRNS | ||
), | ||
/* Keymap 2: Media and mouse keys | ||
* | ||
* ,--------------------------------------------------. ,--------------------------------------------------. | ||
* | | | | | | | | | | | | | | | | | ||
* |--------+------+------+------+------+-------------| |------+------+------+------+------+------+--------| | ||
* | | | | MsUp | | | | | | | | | | | | | ||
* |--------+------+------+------+------+------| | | |------+------+------+------+------+--------| | ||
* | | |MsLeft|MsDown|MsRght| |------| |------| | | | | | Play | | ||
* |--------+------+------+------+------+------| | | |------+------+------+------+------+--------| | ||
* | | | | | | | | | | | | Prev | Next | | | | ||
* `--------+------+------+------+------+-------------' `-------------+------+------+------+------+--------' | ||
* | | | | Lclk | Rclk | |VolUp |VolDn | Mute | | | | ||
* `----------------------------------' `----------------------------------' | ||
* ,-------------. ,-------------. | ||
* | | | | | | | ||
* ,------|------|------| |------+------+------. | ||
* | | | | | | |Brwser| | ||
* | | |------| |------| |Back | | ||
* | | | | | | | | | ||
* `--------------------' `--------------------' | ||
*/ | ||
}; | ||
|
||
bool process_record_user(uint16_t keycode, keyrecord_t *record) { | ||
switch (keycode) { | ||
case VRSN: | ||
if (record->event.pressed) { | ||
SEND_STRING (QMK_KEYBOARD "/" QMK_KEYMAP " @ " QMK_VERSION); | ||
} | ||
return false; | ||
} | ||
return true; | ||
} | ||
|
||
bool led_update_user(led_t led_state) { | ||
// stub any kb level behaviour | ||
return false; | ||
} | ||
|
||
// Runs constantly in the background, in a loop. | ||
void matrix_scan_user(void) { | ||
ergodox_board_led_off(); | ||
ergodox_right_led_1_off(); | ||
ergodox_right_led_2_off(); | ||
ergodox_right_led_3_off(); | ||
|
||
switch (get_highest_layer(layer_state)) { | ||
// TODO: Make this relevant to the ErgoDox EZ. | ||
case 1: | ||
ergodox_right_led_1_on(); | ||
break; | ||
case 2: | ||
ergodox_right_led_2_on(); | ||
break; | ||
default: | ||
// none | ||
break; | ||
} | ||
|
||
}; |
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,15 @@ | ||
# ErgoDox EZ Default Configuration | ||
|
||
## Changelog | ||
|
||
* Dec 2016: | ||
* Added LED keys | ||
* Refreshed layout graphic, comes from http://configure.ergodox-ez.com now. | ||
* Sep 22, 2016: | ||
* Created a new key in layer 1 (bottom-corner key) that resets the EEPROM. | ||
* Feb 2, 2016 (V1.1): | ||
* Made the right-hand quote key double as Cmd/Win on hold. So you get ' when you tap it, " when you tap it with Shift, and Cmd or Win when you hold it. You can then use it as a modifier, or just press and hold it for a moment (and then let go) to send a single Cmd or Win keystroke (handy for opening the Start menu on Windows). | ||
|
||
This is what we ship with out of the factory. :) The image says it all: | ||
|
||
![Default](https://i.imgur.com/Be53jH7.png) |
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,7 @@ | ||
VIA_ENABLE = yes | ||
VIAL_ENABLE = yes | ||
LTO_ENABLE = yes | ||
|
||
TAP_DANCE_ENABLE = no | ||
COMBO_ENABLE = no | ||
KEY_OVERRIDE_ENABLE = no |
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,37 @@ | ||
{ | ||
"lighting": "none", | ||
"matrix": { | ||
"rows": 6, | ||
"cols": 14 | ||
}, | ||
"layouts": { | ||
"keymap": [ | ||
[{"x":3.5},"0,3",{"x":10.5},"0,10"], | ||
[{"y":-0.875,"x":2.5},"0,2",{"x":1},"0,4",{"x":8.5},"0,9",{"x":1},"0,11"], | ||
[{"y":-0.875,"x":5.5},"0,5","0,6",{"x":4.5},"0, 7","0,8"], | ||
[{"y":-0.875,"w":1.5},"0,0","0,1",{"x":14.5},"0,12",{"w":1.5},"0,13"], | ||
[{"y":-0.375,"x":3.5},"1,3",{"x":10.5},"1,10"], | ||
[{"y":-0.875,"x":2.5},"1,2",{"x":1},"1,4",{"x":8.5},"1,9",{"x":1},"1,11"], | ||
[{"y":-0.875,"x":5.5},"1,5",{"h":1.5},"1,6",{"x":4.5,"h":1.5},"1,7","1,8"], | ||
[{"y":-0.875,"w":1.5},"1,0","1,1",{"x":14.5},"1, 12",{"w":1.5},"1,13"], | ||
[{"y":-0.375,"x":3.5},"2,3",{"x":10.5},"2,10"], | ||
[{"y":-0.875,"x":2.5},"2,2",{"x":1},"2,4",{"x":8.5},"2,9",{"x":1},"2,11"], | ||
[{"y":-0.875,"x":5.5},"2,5",{"x":6.5},"2,8"], | ||
[{"y":-0.875,"w":1.5},"2,0","2,1",{"x":14.5},"2,12",{"w":1.5},"2,13"], | ||
[{"y":-0.625,"x":6.5,"h":1.5},"3,6",{"x":4.5,"h":1.5},"3,7"], | ||
[{"y":-0.75,"x":3.5},"3,3",{"x":10.5},"3,10"], | ||
[{"y":-0.875,"x":2.5},"3,2",{"x":1},"3,4",{"x":8.5},"3,9",{"x":1},"3,11"], | ||
[{"y":-0.875,"x":5.5},"3,5",{"x":6.5},"3,8"], | ||
[{"y":-0.875,"w":1.5},"3,0","3,1",{"x":14.5},"3,12",{"w":1.5},"3,13"], | ||
[{"y":-0.375,"x":3.5},"4,3",{"x":10.5},"4,10"], | ||
[{"y":-0.875,"x":2.5},"4,2",{"x":1},"4,4",{"x":8.5},"4,9",{"x":1},"4,11"], | ||
[{"y":-0.75,"x":0.5},"4,0","4,1",{"x":14.5},"4,12","4,13"], | ||
[{"r":30,"rx":6.5,"ry":4.25,"y":-1,"x":1},"5,5","5,6"], | ||
["4,5","4,6","5,4"], | ||
["5,3","5,2","5,1"], | ||
[{"r":-30,"rx":13,"y":-1,"x":-3},"5,7","5,8"], | ||
[{"x":-3},"5,9","4,7","4,8"], | ||
[{"x":-3},"5,12","5,11","5,10"] | ||
] | ||
} | ||
} |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
remove this file