summaryrefslogtreecommitdiffstats
path: root/keyboards/handwired/mutepad/keymaps/default/keymap.c
blob: d26e230e538fb873feb891ec50a0eff07181b8ca (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
43
// Copyright 2022 Joshua Barber (@JoshwJB)
// SPDX-License-Identifier: GPL-2.0-or-later

#include QMK_KEYBOARD_H

// Defines names for use in layer keycodes and the keymap
enum layer_names { _BASE };

enum custom_keycodes { MUTE_GOOGLE_MEET = 0, MUTE_TEAMS = 1 };

bool process_record_user(uint16_t keycode, keyrecord_t *record) {
    switch (keycode) {
        case MUTE_GOOGLE_MEET:
            if (record->event.pressed) {
                tap_code16(G(KC_D));
            }
            break;
        case MUTE_TEAMS:
            if (record->event.pressed) {
                tap_code16(C(S(KC_M)));
            }
            break;
    }

    return true;
};

const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
    /* Base */
    [_BASE] = LAYOUT(MUTE_TEAMS, KC_F23, KC_F24, KC_MPLY)};

#ifdef ENCODER_ENABLE

bool encoder_update_user(uint8_t index, bool clockwise) {
    if (clockwise) {
        tap_code(KC_VOLU);
    } else {
        tap_code(KC_VOLD);
    }
    return true;
}

#endif