diff options
Diffstat (limited to 'keyboards/anavi/macropad8/keymaps/zoom/keymap.c')
-rw-r--r-- | keyboards/anavi/macropad8/keymaps/zoom/keymap.c | 97 |
1 files changed, 97 insertions, 0 deletions
diff --git a/keyboards/anavi/macropad8/keymaps/zoom/keymap.c b/keyboards/anavi/macropad8/keymaps/zoom/keymap.c new file mode 100644 index 000000000..965bbec42 --- /dev/null +++ b/keyboards/anavi/macropad8/keymaps/zoom/keymap.c | |||
@@ -0,0 +1,97 @@ | |||
1 | /* Copyright 2020 Leon Anavi <[email protected]> | ||
2 | * | ||
3 | * This program is free software: you can redistribute it and/or modify | ||
4 | * it under the terms of the GNU General Public License as published by | ||
5 | * the Free Software Foundation, either version 2 of the License, or | ||
6 | * (at your option) any later version. | ||
7 | * | ||
8 | * This program is distributed in the hope that it will be useful, | ||
9 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
10 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
11 | * GNU General Public License for more details. | ||
12 | * | ||
13 | * You should have received a copy of the GNU General Public License | ||
14 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
15 | */ | ||
16 | |||
17 | #include QMK_KEYBOARD_H | ||
18 | |||
19 | #define _MAIN 0 | ||
20 | #define _FN 1 | ||
21 | |||
22 | #define KC_X0 LT(_FN, KC_ESC) | ||
23 | |||
24 | #ifdef RGBLIGHT_ENABLE | ||
25 | // How long (in ms) to wait between animation steps for the rainbow mode | ||
26 | const uint8_t RGBLED_RAINBOW_MOOD_INTERVALS[] PROGMEM = {60, 30, 15}; | ||
27 | // How long (in milliseconds) to wait between animation steps for each of the "Swirling rainbow" animations | ||
28 | const uint8_t RGBLED_RAINBOW_SWIRL_INTERVALS[] PROGMEM = {20, 10, 4}; | ||
29 | #endif | ||
30 | |||
31 | /* | ||
32 | * The keymap contains the following shortcuts for Zoom meeting: | ||
33 | * | ||
34 | * Alt+V: Start/stop video | ||
35 | * Alt+A: Mute/unmute my audio | ||
36 | * Alt+M: Mute/unmute audio for everyone except the host | ||
37 | * Alt+S: Start/stop screen sharing | ||
38 | * Alt+R: Start/stop local recording | ||
39 | * Alt+P: Pause/resume recording | ||
40 | * Alt+C: Start/stop cloud recording | ||
41 | */ | ||
42 | |||
43 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
44 | [_MAIN] = LAYOUT_ortho_2x4( | ||
45 | LALT(KC_V), LALT(KC_A), LALT(KC_M), LALT(KC_S), | ||
46 | LALT(KC_R), LALT(KC_P), LALT(KC_C), MO(_FN) | ||
47 | ), | ||
48 | |||
49 | [_FN] = LAYOUT_ortho_2x4( | ||
50 | RGB_TOG, RGB_MOD, RGB_M_R, RGB_M_SN, | ||
51 | BL_TOGG, BL_STEP, BL_BRTG, _______ | ||
52 | ) | ||
53 | }; | ||
54 | |||
55 | #ifdef OLED_ENABLE | ||
56 | oled_rotation_t oled_init_user(oled_rotation_t rotation) { | ||
57 | return OLED_ROTATION_180; // flips the display 180 degrees if offhand | ||
58 | } | ||
59 | |||
60 | bool oled_task_user(void) { | ||
61 | // Host Keyboard Layer Status | ||
62 | oled_write_ln_P(PSTR("ANAVI Macro Pad 8"), false); | ||
63 | oled_write_P(PSTR("Active layer: "), false); | ||
64 | |||
65 | switch (get_highest_layer(layer_state)) { | ||
66 | case _MAIN: | ||
67 | oled_write_ln_P(PSTR("Zoom"), false); | ||
68 | break; | ||
69 | case _FN: | ||
70 | oled_write_ln_P(PSTR("FN"), false); | ||
71 | break; | ||
72 | default: | ||
73 | // Or use the write_ln shortcut over adding '\n' to the end of your string | ||
74 | oled_write_ln_P(PSTR("N/A"), false); | ||
75 | } | ||
76 | |||
77 | // Host Keyboard LED Status | ||
78 | led_t led_state = host_keyboard_led_state(); | ||
79 | oled_write_P(PSTR("Num Lock: "), false); | ||
80 | oled_write_ln_P(led_state.num_lock ? PSTR("On") : PSTR("Off"), false); | ||
81 | oled_write_P(PSTR("Caps Lock: "), false); | ||
82 | oled_write_ln_P(led_state.caps_lock ? PSTR("On") : PSTR("Off"), false); | ||
83 | oled_write_P(PSTR("Scroll Lock: "), false); | ||
84 | oled_write_ln_P(led_state.scroll_lock ? PSTR("On") : PSTR("Off"), false); | ||
85 | oled_write_P(PSTR("Backlit: "), false); | ||
86 | oled_write_ln_P(is_backlight_enabled() ? PSTR("On") : PSTR("Off"), false); | ||
87 | #ifdef RGBLIGHT_ENABLE | ||
88 | static char rgbStatusLine1[26] = {0}; | ||
89 | snprintf(rgbStatusLine1, sizeof(rgbStatusLine1), "RGB Mode: %d", rgblight_get_mode()); | ||
90 | oled_write_ln(rgbStatusLine1, false); | ||
91 | static char rgbStatusLine2[26] = {0}; | ||
92 | snprintf(rgbStatusLine2, sizeof(rgbStatusLine2), "h:%d s:%d v:%d", rgblight_get_hue(), rgblight_get_sat(), rgblight_get_val()); | ||
93 | oled_write_ln(rgbStatusLine2, false); | ||
94 | #endif | ||
95 | return false; | ||
96 | } | ||
97 | #endif | ||