summaryrefslogtreecommitdiffstats
path: root/keyboards/ergotaco/keymaps/default/keymap.c
blob: be1267ef06c453771dd1b9096e3d2a0428548492 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
/* Good on you for modifying your layout! if you don't have 
 * time to read the QMK docs, a list of keycodes can be found at
 *
 * https://github.com/qmk/qmk_firmware/blob/master/docs/keycodes.md
 *
 * There's also a template for adding new layers at the bottom of this file!
 */

#include QMK_KEYBOARD_H

#define FIESTA   0 // default layer
#define TACOTIME 1 // symbols

// Blank template at the bottom
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
/* Keymap template 
 *
 * ,-------------------------------------------------.           ,--------------------------------------------.
 * |       |      |      |      |      |      |      |           |       |      |      |      |      |        |
 * `-------+------+------+------+------+-------------'           `-------+------+------+------+------+--------' */
[FIESTA] = LAYOUT(  
   KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y,        KC_A, KC_S, KC_D, KC_F, KC_G, KC_H
),
};

/* Keymap template 
 *
 * ,-------------------------------------------------.           ,--------------------------------------------.
 * |       |      |      |      |      |      |      |           |       |      |      |      |      |        |
 * `-------+------+------+------+------+-------------'           `-------+------+------+------+------+--------'
[FIESTA] = LAYOUT(  
   KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS,        KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS
),
 */

// Runs just one time when the keyboard initializes.
void matrix_init_user(void) {
};

// Runs constantly in the background, in a loop.
void matrix_scan_user(void) {
};