summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJack Humbert <jack.humb@gmail.com>2016-01-29 23:11:25 -0500
committerJack Humbert <jack.humb@gmail.com>2016-01-29 23:11:25 -0500
commit0a71166a2d4763e71827a9abc3788b5c580ef4f9 (patch)
tree7436be8eef5fc44d74b7e0baec7d7af6243ff740
parent200608465651dd4cbfd10ddd45555bd8230d589f (diff)
missing fileoptimised
-rw-r--r--quantum/template/keymaps/default.c30
1 files changed, 30 insertions, 0 deletions
diff --git a/quantum/template/keymaps/default.c b/quantum/template/keymaps/default.c
new file mode 100644
index 0000000000..4121fd860c
--- /dev/null
+++ b/quantum/template/keymaps/default.c
@@ -0,0 +1,30 @@
+// This is the canonical layout file for the Quantum project. If you want to add another keyboard,
+// this is the style you want to emulate.
+
+#include "%KEYBOARD%.h"
+
+const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
+[0] = KEYMAP( /* Base */
+ KC_A, KC_1, KC_H, \
+ KC_TAB, KC_SPC \
+),
+};
+
+const uint16_t PROGMEM fn_actions[] = {
+
+};
+
+const macro_t *action_get_macro(keyrecord_t *record, uint8_t id, uint8_t opt)
+{
+ // MACRODOWN only works in this function
+ switch(id) {
+ case 0:
+ if (record->event.pressed) {
+ register_code(KC_RSFT);
+ } else {
+ unregister_code(KC_RSFT);
+ }
+ break;
+ }
+ return MACRO_NONE;
+};