Skip to content

Commit

Permalink
[Feather] Add drashna keymap
Browse files Browse the repository at this point in the history
  • Loading branch information
drashna committed Jan 11, 2024
1 parent b7c0797 commit ba69f07
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
// Copyright 2023 QMK
// SPDX-License-Identifier: GPL-2.0-or-later

#include "drashna.h"

const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
/*
* ┌───┬───┬───┬───┐
* │ 7 │ 8 │ 9 │ / │
* ├───┼───┼───┼───┤
* │ 4 │ 5 │ 6 │ * │
* ├───┼───┼───┼───┤
* │ 1 │ 2 │ 3 │ - │
* ├───┼───┼───┼───┤
* │ 0 │ . │Ent│ + │
* └───┴───┴───┴───┘
*/
[0] = LAYOUT_ortho_4x4(
KC_P7, KC_P8, KC_P9, KC_PSLS,
KC_P4, KC_P5, KC_P6, KC_PAST,
KC_P1, KC_P2, KC_P3, KC_PMNS,
KC_P0, KC_PDOT, KC_PENT, KC_PPLS
)
};
3 changes: 2 additions & 1 deletion qmk.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
["crkbd/rev1", "drashna"],
["splitkb/zima", "drashna"],
["converter/usb_usb/pro_micro", "drashna"],
["zsa/voyager", "drashna"]
["zsa/voyager", "drashna"],
["handwired/feather_stm32f405_express", "drashna"]
]
}

0 comments on commit ba69f07

Please sign in to comment.