Skip to content
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

Add is0gr to QMK #22024

Merged
merged 9 commits into from
Sep 25, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Apply suggestions from code review
Co-authored-by: Duncan Sutherland <[email protected]>
  • Loading branch information
2 people authored and awkannan committed Sep 20, 2023
commit fee93b0609e86b3070aded80a554746b9efff796
3 changes: 2 additions & 1 deletion keyboards/cannonkeys/is0gr/info.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,9 @@
"pid": "0xCA04",
"vid": "0x0028"
},
"community_layouts": ["ortho_1x1"],
"layouts": {
"LAYOUT": {
"LAYOUT_ortho_1x1": {
"layout": [
{"matrix": [0, 0], "x": 0.25, "y": 0, "w": 1.25, "h": 2}
]
Expand Down
2 changes: 1 addition & 1 deletion keyboards/cannonkeys/is0gr/keymaps/default/keymap.c
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#include QMK_KEYBOARD_H

const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
[0] = LAYOUT(
[0] = LAYOUT_ortho_1x1(
KC_ENT
),
};
2 changes: 1 addition & 1 deletion keyboards/cannonkeys/is0gr/keymaps/via/keymap.c
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#include QMK_KEYBOARD_H

const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
[0] = LAYOUT(
[0] = LAYOUT_ortho_1x1(
KC_ENT
),
};
Expand Down