summaryrefslogtreecommitdiff
path: root/keyboards/anavi
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/anavi')
-rw-r--r--keyboards/anavi/macropad8/keymaps/git/config.h24
-rw-r--r--keyboards/anavi/macropad8/keymaps/git/keymap.c145
-rw-r--r--keyboards/anavi/macropad8/keymaps/kicad/keymap.c118
-rw-r--r--keyboards/anavi/macropad8/keymaps/kodi/keymap.c81
-rw-r--r--keyboards/anavi/macropad8/keymaps/obs/keymap.c98
-rw-r--r--keyboards/anavi/macropad8/keymaps/vlc/keymap.c139
-rw-r--r--keyboards/anavi/macropad8/keymaps/vscode/config.h19
-rw-r--r--keyboards/anavi/macropad8/keymaps/vscode/keymap.c227
-rw-r--r--keyboards/anavi/macropad8/keymaps/zoom/keymap.c97
9 files changed, 0 insertions, 948 deletions
diff --git a/keyboards/anavi/macropad8/keymaps/git/config.h b/keyboards/anavi/macropad8/keymaps/git/config.h
deleted file mode 100644
index 370eb86ca8..0000000000
--- a/keyboards/anavi/macropad8/keymaps/git/config.h
+++ /dev/null
@@ -1,24 +0,0 @@
-/* Copyright 2021 Leon Anavi <leon@anavi.org>
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- */
-
-#pragma once
-
-#undef RGBLIGHT_EFFECT_RAINBOW_SWIRL
-#undef RGBLIGHT_EFFECT_KNIGHT
-#undef RGBLIGHT_EFFECT_STATIC_GRADIENT
-#undef RGBLIGHT_EFFECT_RGB_TEST
-#undef RGBLIGHT_EFFECT_ALTERNATING
-#undef RGBLIGHT_EFFECT_TWINKLE
diff --git a/keyboards/anavi/macropad8/keymaps/git/keymap.c b/keyboards/anavi/macropad8/keymaps/git/keymap.c
deleted file mode 100644
index 9b7afb5d69..0000000000
--- a/keyboards/anavi/macropad8/keymaps/git/keymap.c
+++ /dev/null
@@ -1,145 +0,0 @@
-/* Copyright 2021 Leon Anavi <leon@anavi.org>
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- */
-
-#include QMK_KEYBOARD_H
-
-#define _MAIN 0
-#define _FN 1
-
-/*
- * This keymap contains the following shortcuts for Git. On the
- * first row from left to right:
- *
- * git status
- * git log
- * git pull
- * git push
- *
- * On the second row from left to right:
- *
- * git diff
- * git add
- * git commit
- * FN key to switch to the 2nd layout and control lights
- *
- */
-
-enum custom_keycodes {
- GITCOMMIT = SAFE_RANGE,
- GITPUSH,
- GITPULL,
- GITSTATUS,
- GITDIFF,
- GITLOG,
- GITADD
-};
-
-bool process_record_user(uint16_t keycode, keyrecord_t *record) {
- switch (keycode) {
- case GITCOMMIT:
- if (record->event.pressed) {
- SEND_STRING("git commit -s\n");
- }
- break;
- case GITPUSH:
- if (record->event.pressed) {
- SEND_STRING("git push\n");
- }
- break;
- case GITPULL:
- if (record->event.pressed) {
- SEND_STRING("git pull\n");
- }
- break;
- case GITSTATUS:
- if (record->event.pressed) {
- SEND_STRING("git status\n");
- }
- break;
- case GITDIFF:
- if (record->event.pressed) {
- SEND_STRING("git diff ");
- }
- break;
- case GITLOG:
- if (record->event.pressed) {
- SEND_STRING("git log\n");
- }
- break;
- case GITADD:
- if (record->event.pressed) {
- SEND_STRING("git add ");
- }
- break;
- }
- return true;
-};
-
-const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
- [_MAIN] = LAYOUT_ortho_2x4(
- GITSTATUS, GITLOG, GITPULL, GITPUSH,
- GITDIFF, GITADD, GITCOMMIT, MO(_FN)
- ),
-
- [_FN] = LAYOUT_ortho_2x4(
- RGB_TOG, RGB_MOD, RGB_M_R, RGB_M_SN,
- BL_TOGG, BL_STEP, BL_BRTG, _______
- )
-};
-
-#ifdef OLED_ENABLE
-oled_rotation_t oled_init_user(oled_rotation_t rotation) {
- return OLED_ROTATION_180; // flips the display 180 degrees if offhand
-}
-
-bool oled_task_user(void) {
- // Host Keyboard Layer Status
- oled_write_ln_P(PSTR("ANAVI Macro Pad 8"), false);
- oled_write_P(PSTR("Active layer: "), false);
-
- switch (get_highest_layer(layer_state)) {
- case _MAIN:
- oled_write_ln_P(PSTR("Git"), false);
- break;
- case _FN:
- oled_write_ln_P(PSTR("FN"), false);
- break;
- default:
- // Or use the write_ln shortcut over adding '\n' to the end of your string
- oled_write_ln_P(PSTR("N/A"), false);
- }
-
- // Host Keyboard LED Status
- led_t led_state = host_keyboard_led_state();
- oled_write_P(PSTR("Num Lock: "), false);
- oled_write_ln_P(led_state.num_lock ? PSTR("On") : PSTR("Off"), false);
- oled_write_P(PSTR("Caps Lock: "), false);
- oled_write_ln_P(led_state.caps_lock ? PSTR("On") : PSTR("Off"), false);
- oled_write_P(PSTR("Scroll Lock: "), false);
- oled_write_ln_P(led_state.scroll_lock ? PSTR("On") : PSTR("Off"), false);
- oled_write_P(PSTR("Backlit: "), false);
- oled_write_ln_P(is_backlight_enabled() ? PSTR("On") : PSTR("Off"), false);
-#ifdef RGBLIGHT_ENABLE
- static char rgbStatusLine1[26] = {0};
- snprintf(rgbStatusLine1, sizeof(rgbStatusLine1), "RGB Mode: %d", rgblight_get_mode());
- oled_write_ln(rgbStatusLine1, false);
- static char rgbStatusLine2[26] = {0};
- snprintf(rgbStatusLine2, sizeof(rgbStatusLine2), "h:%d s:%d v:%d", rgblight_get_hue(), rgblight_get_sat(), rgblight_get_val());
- oled_write_ln(rgbStatusLine2, false);
-#endif
- return false;
-}
-#endif
diff --git a/keyboards/anavi/macropad8/keymaps/kicad/keymap.c b/keyboards/anavi/macropad8/keymaps/kicad/keymap.c
deleted file mode 100644
index e75d588478..0000000000
--- a/keyboards/anavi/macropad8/keymaps/kicad/keymap.c
+++ /dev/null
@@ -1,118 +0,0 @@
- /* Copyright 2020 Leon Anavi <leon@anavi.org>
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- */
-
-#include QMK_KEYBOARD_H
-
-#define _SCH 0
-#define _PCB 1
-#define _FN 2
-
-#define KC_X0 LT(_FN, KC_ESC)
-
-#ifdef RGBLIGHT_ENABLE
-// How long (in ms) to wait between animation steps for the rainbow mode
-const uint8_t RGBLED_RAINBOW_MOOD_INTERVALS[] PROGMEM = {60, 30, 15};
-// How long (in milliseconds) to wait between animation steps for each of the "Swirling rainbow" animations
-const uint8_t RGBLED_RAINBOW_SWIRL_INTERVALS[] PROGMEM = {20, 10, 4};
-#endif
-
-/*
- * The keymap contains 2 layers for KiCad hotkeys and a 3rd layer
- * for controlling the backlighting and the underlighting.
- *
- * - Layer for KiCad Schematic hotkeys:
- * m - to move selected component
- * r - to rotate selected component
- * w - to wire components
- * v - to edit component value
- * F1 - zoom in
- * F2 - zoom out
- * F4 - zoom center
- *
- * - Layer for KiCad PCB layout hotkets:
- * m - to move selected component
- * r - to rotate selected component
- * x - to route a new track
- * v - to add a via
- * F1 - zoom in
- * F2 - zoom out
- * F4 - zoom center
- *
- */
-
-const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
- [_SCH] = LAYOUT_ortho_2x4(
- KC_M, KC_R, KC_W, KC_V,
- KC_F1, KC_F2, KC_F4, TO(_PCB)
- ),
-
- [_PCB] = LAYOUT_ortho_2x4(
- KC_M, KC_R, KC_X, KC_V,
- KC_F1, KC_F2, KC_F4, TO(_FN)
- ),
-
- [_FN] = LAYOUT_ortho_2x4(
- RGB_TOG, RGB_MOD, RGB_M_R, RGB_M_SN,
- BL_TOGG, BL_STEP, BL_BRTG, TO(_SCH)
- )
-};
-
-#ifdef OLED_ENABLE
-oled_rotation_t oled_init_user(oled_rotation_t rotation) {
- return OLED_ROTATION_180; // flips the display 180 degrees if offhand
-}
-
-bool oled_task_user(void) {
- // Host Keyboard Layer Status
- oled_write_ln_P(PSTR("ANAVI Macro Pad 8"), false);
- oled_write_P(PSTR("Layer: "), false);
-
- switch (get_highest_layer(layer_state)) {
- case _SCH:
- oled_write_ln_P(PSTR("KiCad Schema"), false);
- break;
- case _PCB:
- oled_write_ln_P(PSTR("KiCad PCB"), false);
- break;
- case _FN:
- oled_write_ln_P(PSTR("FN "), false);
- break;
- default:
- // Or use the write_ln shortcut over adding '\n' to the end of your string
- oled_write_ln_P(PSTR("N/A"), false);
- }
-
- // Host Keyboard LED Status
- led_t led_state = host_keyboard_led_state();
- oled_write_P(PSTR("Num Lock: "), false);
- oled_write_ln_P(led_state.num_lock ? PSTR("On") : PSTR("Off"), false);
- oled_write_P(PSTR("Caps Lock: "), false);
- oled_write_ln_P(led_state.caps_lock ? PSTR("On") : PSTR("Off"), false);
- oled_write_P(PSTR("Scroll Lock: "), false);
- oled_write_ln_P(led_state.scroll_lock ? PSTR("On") : PSTR("Off"), false);
- oled_write_P(PSTR("Backlit: "), false);
- oled_write_ln_P(is_backlight_enabled() ? PSTR("On") : PSTR("Off"), false);
-#ifdef RGBLIGHT_ENABLE
- static char rgbStatusLine1[26] = {0};
- snprintf(rgbStatusLine1, sizeof(rgbStatusLine1), "RGB Mode: %d", rgblight_get_mode());
- oled_write_ln(rgbStatusLine1, false);
- static char rgbStatusLine2[26] = {0};
- snprintf(rgbStatusLine2, sizeof(rgbStatusLine2), "h:%d s:%d v:%d", rgblight_get_hue(), rgblight_get_sat(), rgblight_get_val());
- oled_write_ln(rgbStatusLine2, false);
-#endif
- return false;
-}
-#endif
diff --git a/keyboards/anavi/macropad8/keymaps/kodi/keymap.c b/keyboards/anavi/macropad8/keymaps/kodi/keymap.c
deleted file mode 100644
index f99a22d723..0000000000
--- a/keyboards/anavi/macropad8/keymaps/kodi/keymap.c
+++ /dev/null
@@ -1,81 +0,0 @@
-#include QMK_KEYBOARD_H
-
-#define _MAIN 0
-#define _FN 1
-
-#define KC_X0 LT(_FN, KC_ESC)
-
-#ifdef RGBLIGHT_ENABLE
-// How long (in ms) to wait between animation steps for the rainbow mode
-const uint8_t RGBLED_RAINBOW_MOOD_INTERVALS[] PROGMEM = {60, 30, 15};
-// How long (in milliseconds) to wait between animation steps for each of the "Swirling rainbow" animations
-const uint8_t RGBLED_RAINBOW_SWIRL_INTERVALS[] PROGMEM = {20, 10, 4};
-#endif
-
-/**
- * Kodi shortcuts:
- *
- * ESC - Previous menu OR Home screen
- * Enter - Select
- * X - Stop
- * Arrows to move
- *
- * For details have a look at:
- * https://kodi.wiki/view/Keyboard_controls
- */
-
-const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
- [_MAIN] = LAYOUT_ortho_2x4(
- KC_ESC, KC_UP, KC_ENTER, KC_X,
- KC_LEFT, KC_DOWN, KC_RIGHT, MO(_FN)
- ),
-
- [_FN] = LAYOUT_ortho_2x4(
- RGB_TOG, RGB_MOD, RGB_M_R, RGB_M_SN,
- BL_TOGG, BL_STEP, BL_BRTG, _______
- )
-};
-
-#ifdef OLED_ENABLE
-oled_rotation_t oled_init_user(oled_rotation_t rotation) {
- return OLED_ROTATION_180; // flips the display 180 degrees if offhand
-}
-
-bool oled_task_user(void) {
- // Host Keyboard Layer Status
- oled_write_ln_P(PSTR("ANAVI Macro Pad 8"), false);
- oled_write_P(PSTR("Active layer: "), false);
-
- switch (get_highest_layer(layer_state)) {
- case _MAIN:
- oled_write_ln_P(PSTR("Kodi"), false);
- break;
- case _FN:
- oled_write_ln_P(PSTR("FN"), false);
- break;
- default:
- // Or use the write_ln shortcut over adding '\n' to the end of your string
- oled_write_ln_P(PSTR("N/A"), false);
- }
-
- // Host Keyboard LED Status
- led_t led_state = host_keyboard_led_state();
- oled_write_P(PSTR("Num Lock: "), false);
- oled_write_ln_P(led_state.num_lock ? PSTR("On") : PSTR("Off"), false);
- oled_write_P(PSTR("Caps Lock: "), false);
- oled_write_ln_P(led_state.caps_lock ? PSTR("On") : PSTR("Off"), false);
- oled_write_P(PSTR("Scroll Lock: "), false);
- oled_write_ln_P(led_state.scroll_lock ? PSTR("On") : PSTR("Off"), false);
- oled_write_P(PSTR("Backlit: "), false);
- oled_write_ln_P(is_backlight_enabled() ? PSTR("On") : PSTR("Off"), false);
-#ifdef RGBLIGHT_ENABLE
- static char rgbStatusLine1[26] = {0};
- snprintf(rgbStatusLine1, sizeof(rgbStatusLine1), "RGB Mode: %d", rgblight_get_mode());
- oled_write_ln(rgbStatusLine1, false);
- static char rgbStatusLine2[26] = {0};
- snprintf(rgbStatusLine2, sizeof(rgbStatusLine2), "h:%d s:%d v:%d", rgblight_get_hue(), rgblight_get_sat(), rgblight_get_val());
- oled_write_ln(rgbStatusLine2, false);
-#endif
- return false;
-}
-#endif
diff --git a/keyboards/anavi/macropad8/keymaps/obs/keymap.c b/keyboards/anavi/macropad8/keymaps/obs/keymap.c
deleted file mode 100644
index 1d9fd38eed..0000000000
--- a/keyboards/anavi/macropad8/keymaps/obs/keymap.c
+++ /dev/null
@@ -1,98 +0,0 @@
- /* Copyright 2020 Leon Anavi <leon@anavi.org>
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- */
-
-#include QMK_KEYBOARD_H
-
-#define _MAIN 0
-#define _FN 1
-
-#define KC_X0 LT(_FN, KC_ESC)
-
-#ifdef RGBLIGHT_ENABLE
-// How long (in ms) to wait between animation steps for the rainbow mode
-const uint8_t RGBLED_RAINBOW_MOOD_INTERVALS[] PROGMEM = {60, 30, 15};
-// How long (in milliseconds) to wait between animation steps for each of the "Swirling rainbow" animations
-const uint8_t RGBLED_RAINBOW_SWIRL_INTERVALS[] PROGMEM = {20, 10, 4};
-#endif
-
-/*
- * This keymap contains the following shortcuts for OBS:
- *
- * - Shortcuts useful for switching scenes on the 1st row:
- * Hold Left Control, Shift, Alt and GUI and press F9
- * Hold Left Control, Shift, Alt and GUI and press F10
- * Hold Left Control, Shift, Alt and GUI and press F11
- * Hold Left Control, Shift, Alt and GUI and press F12
- * - Center to screen: Ctrl+D
- * - Fit to screen: Ctrl+F
- * - Move source to top of sources list: Ctrl+Home
- */
-
-const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
- [_MAIN] = LAYOUT_ortho_2x4(
- HYPR(KC_F9), HYPR(KC_F10), HYPR(KC_F11), HYPR(KC_F12),
- LCTL(KC_D), LCTL(KC_F), LCTL(KC_HOME), MO(_FN)
- ),
-
- [_FN] = LAYOUT_ortho_2x4(
- RGB_TOG, RGB_MOD, RGB_M_R, RGB_M_SN,
- BL_TOGG, BL_STEP, BL_BRTG, _______
- )
-};
-
-#ifdef OLED_ENABLE
-oled_rotation_t oled_init_user(oled_rotation_t rotation) {
- return OLED_ROTATION_180; // flips the display 180 degrees if offhand
-}
-
-bool oled_task_user(void) {
- // Host Keyboard Layer Status
- oled_write_ln_P(PSTR("ANAVI Macro Pad 8"), false);
- oled_write_P(PSTR("Active layer: "), false);
-
- switch (get_highest_layer(layer_state)) {
- case _MAIN:
- oled_write_ln_P(PSTR("OBS"), false);
- break;
- case _FN:
- oled_write_ln_P(PSTR("FN"), false);
- break;
- default:
- // Or use the write_ln shortcut over adding '\n' to the end of your string
- oled_write_ln_P(PSTR("N/A"), false);
- }
-
- // Host Keyboard LED Status
- led_t led_state = host_keyboard_led_state();
- oled_write_P(PSTR("Num Lock: "), false);
- oled_write_ln_P(led_state.num_lock ? PSTR("On") : PSTR("Off"), false);
- oled_write_P(PSTR("Caps Lock: "), false);
- oled_write_ln_P(led_state.caps_lock ? PSTR("On") : PSTR("Off"), false);
- oled_write_P(PSTR("Scroll Lock: "), false);
- oled_write_ln_P(led_state.scroll_lock ? PSTR("On") : PSTR("Off"), false);
- oled_write_P(PSTR("Backlit: "), false);
- oled_write_ln_P(is_backlight_enabled() ? PSTR("On") : PSTR("Off"), false);
-#ifdef RGBLIGHT_ENABLE
- static char rgbStatusLine1[26] = {0};
- snprintf(rgbStatusLine1, sizeof(rgbStatusLine1), "RGB Mode: %d", rgblight_get_mode());
- oled_write_ln(rgbStatusLine1, false);
- static char rgbStatusLine2[26] = {0};
- snprintf(rgbStatusLine2, sizeof(rgbStatusLine2), "h:%d s:%d v:%d", rgblight_get_hue(), rgblight_get_sat(), rgblight_get_val());
- oled_write_ln(rgbStatusLine2, false);
-#endif
- return false;
-}
-#endif
diff --git a/keyboards/anavi/macropad8/keymaps/vlc/keymap.c b/keyboards/anavi/macropad8/keymaps/vlc/keymap.c
deleted file mode 100644
index 3ea53c57cb..0000000000
--- a/keyboards/anavi/macropad8/keymaps/vlc/keymap.c
+++ /dev/null
@@ -1,139 +0,0 @@
- /* Copyright 2021 Marc Nause <marc.nause@gmx.de>
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- */
-
-#include QMK_KEYBOARD_H
-
-enum custom_layers {
- _PLAY,
- _FRAME,
- _DVD,
- _FN
-};
-
-#define KC_X0 LT(_FN, KC_ESC)
-
-#ifdef RGBLIGHT_ENABLE
-// How long (in ms) to wait between animation steps for the rainbow mode
-const uint8_t RGBLED_RAINBOW_MOOD_INTERVALS[] PROGMEM = {60, 30, 15};
-// How long (in milliseconds) to wait between animation steps for each of the "Swirling rainbow" animations
-const uint8_t RGBLED_RAINBOW_SWIRL_INTERVALS[] PROGMEM = {20, 10, 4};
-#endif
-
-/*
- * The keymap contains 3 layers for vlc hotkeys and a 4th layer
- * for controlling the backlighting and the underlighting.
- *
- * See https://wiki.videolan.org/QtHotkeys/ for VLC hotkeys
- *
- * - Layer for VLC media play hotkeys:
- * Space - Play/pause
- * P - Previous track
- * S - Stop
- * N - Next track
- * + - Slower
- * - - Faster
- * = - Normal rate
- *
- * - Layer for VLC frame control hotkeys:
- * Shift + right arrow - Jump 5 seconds forward
- * Alt + right arrow - Jump 10 seconds forward
- * Control + right arrow - Jump 1 minute forward
- * E - Next frame
- * Shift + left arrow - Jump 5 seconds back
- * Alt + left arrow - Jump 10 seconds back
- * Control + left arrow - Jump 1 minute back
- *
- * - Layer for VLC DVD hotkeys:
- * Shift + M - Disc menu
- * Arrow up - Navigate menu (up)
- * Enter - Select menu entry
- * Shift + V - Toggle subtitles
- * Arrow left - Navigate menu (left)
- * Arrow down - Navigate menu (down)
- * Arrow right - Navigate menu (right)
- */
-
-const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
- [_PLAY] = LAYOUT_ortho_2x4(
- KC_SPC, KC_P, KC_S, KC_N,
- KC_KP_PLUS, KC_KP_MINUS, KC_KP_EQUAL, TO(_FRAME)
- ),
-
- [_FRAME] = LAYOUT_ortho_2x4(
- LSFT(KC_RIGHT), LALT(KC_RIGHT), LCTL(KC_RIGHT), KC_E,
- LSFT(KC_LEFT), LALT(KC_LEFT), LCTL(KC_LEFT), TO(_DVD)
- ),
-
- [_DVD] = LAYOUT_ortho_2x4(
- LSFT(KC_M), KC_UP, KC_ENTER, LSFT(KC_V),
- KC_LEFT, KC_DOWN, KC_RIGHT, TO(_FN)
- ),
-
- [_FN] = LAYOUT_ortho_2x4(
- RGB_TOG, RGB_MOD, RGB_M_R, RGB_M_SN,
- BL_TOGG, BL_STEP, BL_BRTG, TO(_PLAY)
- )
-};
-
-#ifdef OLED_ENABLE
-oled_rotation_t oled_init_user(oled_rotation_t rotation) {
- return OLED_ROTATION_180; // flips the display 180 degrees if offhand
-}
-
-bool oled_task_user(void) {
- // Host Keyboard Layer Status
- oled_write_ln_P(PSTR("ANAVI Macro Pad 8"), false);
- oled_write_P(PSTR("Layer: "), false);
-
- switch (get_highest_layer(layer_state)) {
- case _PLAY:
- oled_write_ln_P(PSTR("VLC Play"), false);
- break;
- case _FRAME:
- oled_write_ln_P(PSTR("VLC Frame"), false);
- break;
- case _DVD:
- oled_write_ln_P(PSTR("VLC DVD"), false);
- break;
- case _FN:
- oled_write_ln_P(PSTR("FN "), false);
- break;
- default:
- // Or use the write_ln shortcut over adding '\n' to the end of your string
- oled_write_ln_P(PSTR("N/A"), false);
- }
-
- // Host Keyboard LED Status
- led_t led_state = host_keyboard_led_state();
- oled_write_P(PSTR("Num Lock: "), false);
- oled_write_ln_P(led_state.num_lock ? PSTR("On") : PSTR("Off"), false);
- oled_write_P(PSTR("Caps Lock: "), false);
- oled_write_ln_P(led_state.caps_lock ? PSTR("On") : PSTR("Off"), false);
- oled_write_P(PSTR("Scroll Lock: "), false);
- oled_write_ln_P(led_state.scroll_lock ? PSTR("On") : PSTR("Off"), false);
- oled_write_P(PSTR("Backlit: "), false);
- oled_write_ln_P(is_backlight_enabled() ? PSTR("On") : PSTR("Off"), false);
-#ifdef RGBLIGHT_ENABLE
- static char rgbStatusLine1[26] = {0};
- snprintf(rgbStatusLine1, sizeof(rgbStatusLine1), "RGB Mode: %d", rgblight_get_mode());
- oled_write_ln(rgbStatusLine1, false);
- static char rgbStatusLine2[26] = {0};
- snprintf(rgbStatusLine2, sizeof(rgbStatusLine2), "h:%d s:%d v:%d", rgblight_get_hue(), rgblight_get_sat(), rgblight_get_val());
- oled_write_ln(rgbStatusLine2, false);
-#endif
- return false;
-}
-#endif
diff --git a/keyboards/anavi/macropad8/keymaps/vscode/config.h b/keyboards/anavi/macropad8/keymaps/vscode/config.h
deleted file mode 100644
index dd687cad58..0000000000
--- a/keyboards/anavi/macropad8/keymaps/vscode/config.h
+++ /dev/null
@@ -1,19 +0,0 @@
-/* Copyright 2021 QMK
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- */
-
-#pragma once
-
-#define LAYER_STATE_8BIT
diff --git a/keyboards/anavi/macropad8/keymaps/vscode/keymap.c b/keyboards/anavi/macropad8/keymaps/vscode/keymap.c
deleted file mode 100644
index 46d4a7d8b3..0000000000
--- a/keyboards/anavi/macropad8/keymaps/vscode/keymap.c
+++ /dev/null
@@ -1,227 +0,0 @@
- /* Copyright 2022 Efthimis Iosifidis <iosifidise@gmail.com>
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- */
-
-#include QMK_KEYBOARD_H
-
-enum layers {
- _BASIC,
- _BRACKETS,
- _SELECTORS,
- _FN,
-};
-
-
-#define KC_X0 LT(_FN, KC_ESC)
-
-static char current_alpha_oled [12] = "None";
-
-const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
-/* _BASIC Layer
- * ,-------------------------------------.
- * | Toggle | Toggle | | |
- * | Block | Line | Undo | Search |
- * | Comment | Comment | | |
- * |---------+---------+--------+---------+
- * | | | | TO |
- * | Cut | Copy | Paste | _BASIC |
- * | | | | |
- * `-------------------------------------'
- */
- [_BASIC] = LAYOUT_ortho_2x4(
- RCS(KC_A), LCTL(KC_SLASH), LCTL(KC_Z), LCTL(KC_F),
- LCTL(KC_X), LCTL(KC_C), LCTL(KC_V), TO(_BRACKETS)
- ),
-/* _BRACKETS Layer
- * ,-----------------------------------------.
- * | | | | |
- * | ( | [ | { | Bksp |
- * | | | | |
- * |---------+---------+--------+------------+
- * | | | | TO |
- * | Del | Copy | Paste | _SELECTORS |
- * | | | | |
- * `----------------------------------------'
- */
- [_BRACKETS] = LAYOUT_ortho_2x4(
- S(KC_9), KC_LBRC, S(KC_LBRC), KC_BACKSPACE,
- KC_DEL, C(KC_C), C(KC_V), TO(_SELECTORS)
- ),
-/* _SELECTORS Layer
-* ,-------------------------------------.
-* | | | | |
-* | Select | Save | Undo | Bksp |
-* | All | | | |
-* |---------+---------+--------+---------+
-* | | | | TO |
-* | Cut | Copy | Paste | _FN |
-* | | | | |
-* `-------------------------------------'
-*/
- [_SELECTORS] = LAYOUT_ortho_2x4(
- C(KC_A), C(KC_S), C(KC_Z), KC_BACKSPACE,
- C(KC_X), C(KC_C), C(KC_V), TO(_FN)
- ),
-/* _FN Layer
- * ,--------------------------------------------.
- * | RGB | RGB | RGB | RGB |
- * | Toggle | Mode | Mode | Snake |
- * | | Forward | Reverse | Mode |
- * |-----------+-----------+-----------+---------+
- * | | Cycle | Toggle | TO |
- * | BackLight | BackLight | BackLight | _BASIC |
- * | Toggle | Levels | Breathing | |
- * `--------------------------------------------'
- */
- [_FN] = LAYOUT_ortho_2x4(
- RGB_TOG, RGB_MOD, RGB_M_R, RGB_M_SN,
- BL_TOGG, BL_STEP, BL_BRTG, TO(_BASIC)
- )
-};
-
-#ifdef OLED_ENABLE
-oled_rotation_t oled_init_user(oled_rotation_t rotation) {
- return OLED_ROTATION_180; // flips the display 180 degrees if offhand
-}
-
-bool process_record_user(uint16_t keycode, keyrecord_t *record) {
- if (record->event.pressed) {
- char string [33];
- switch(keycode)
- {
- //First Layer with Basic Keys
- case LCTL(KC_X):
- strncpy(current_alpha_oled, "Cut", sizeof(current_alpha_oled));
- break;
- case LCTL(KC_F):
- strncpy(current_alpha_oled, "Search", sizeof(current_alpha_oled));
- break;
- case LCTL(KC_Z):
- strncpy(current_alpha_oled, "Undo", sizeof(current_alpha_oled));
- break;
- case LCTL(KC_C):
- strncpy(current_alpha_oled, "Copy", sizeof(current_alpha_oled));
- break;
- case LCTL(KC_V):
- strncpy(current_alpha_oled, "Paste", sizeof(current_alpha_oled));
- break;
- case RCS(KC_A):
- strncpy(current_alpha_oled, "Block cmt.", sizeof(current_alpha_oled));
- break;
- case LCTL(KC_SLASH):
- strncpy(current_alpha_oled, "Line cmt.", sizeof(current_alpha_oled));
- break;
- //Second Layer with Brackets
- case S(KC_9):
- strncpy(current_alpha_oled, "()", sizeof(current_alpha_oled));
- break;
- case KC_LBRC:
- strncpy(current_alpha_oled, "[]", sizeof(current_alpha_oled));
- break;
- case S(KC_LBRC):
- strncpy(current_alpha_oled, "{}", sizeof(current_alpha_oled));
- break;
- case KC_BACKSPACE:
- strncpy(current_alpha_oled, "Backspace", sizeof(current_alpha_oled));
- break;
- case KC_DEL:
- strncpy(current_alpha_oled, "Del", sizeof(current_alpha_oled));
- break;
- // Selector Layer keys
- case C(KC_A):
- strncpy(current_alpha_oled, "Select All", sizeof(current_alpha_oled));
- break;
- case C(KC_S):
- strncpy(current_alpha_oled, "Save", sizeof(current_alpha_oled));
- break;
- // FN Layer keys
- case RGB_TOG:
- strncpy(current_alpha_oled, "RGB Toggle", sizeof(current_alpha_oled));
- break;
- case RGB_MOD:
- strncpy(current_alpha_oled, "RGB Fwd", sizeof(current_alpha_oled));
- break;
- case RGB_M_R:
- strncpy(current_alpha_oled, "RGB Rev", sizeof(current_alpha_oled));
- break;
- case RGB_MODE_SNAKE:
- strncpy(current_alpha_oled, "RGB Snk", sizeof(current_alpha_oled));
- break;
- case BL_TOGG:
- strncpy(current_alpha_oled, "BkLgt Tog", sizeof(current_alpha_oled));
- break;
- case BL_STEP:
- strncpy(current_alpha_oled, "BkLgt Lvl", sizeof(current_alpha_oled));
- break;
- case BL_BRTG:
- strncpy(current_alpha_oled, "BkLgt Brth", sizeof(current_alpha_oled));
- break;
- //FN Key keycodes
- case TO(_BASIC) ... TO(_FN):
- strncpy(current_alpha_oled, "Switcher", sizeof(current_alpha_oled));
- break;
- default:
- strncpy(current_alpha_oled, itoa(keycode, string, 10), sizeof(current_alpha_oled));
- break;
- }
- }
- return true;
-}
-
-bool oled_task_user(void) {
- // Host Keyboard Layer Status
- oled_write_ln_P(PSTR("ANAVI Macro Pad 8"), false);
- oled_write_P(PSTR("Active layer: "), false);
-
- switch (get_highest_layer(layer_state)) {
- case _BASIC:
- oled_write_ln_P(PSTR("Basic"), false);
- break;
- case _BRACKETS:
- oled_write_ln_P(PSTR("Brkts"), false);
- break;
- case _SELECTORS:
- oled_write_ln_P(PSTR("Selct"), false);
- break;
- case _FN:
- oled_write_ln_P(PSTR("FN"), false);
- break;
- default:
- // Or use the write_ln shortcut over adding '\n' to the end of your string
- oled_write_ln_P(PSTR("N/A"), false);
- }
-
-
- // Host Keyboard LED Status
- led_t led_state = host_keyboard_led_state();
- oled_write_P(PSTR("Num Lock: "), false);
- oled_write_ln_P(led_state.num_lock ? PSTR("On") : PSTR("Off"), false);
- oled_write_P(PSTR("Caps Lock: "), false);
- oled_write_ln_P(led_state.caps_lock ? PSTR("On") : PSTR("Off"), false);
- oled_write_P(PSTR("Backlit: "), false);
- oled_write_ln_P(is_backlight_enabled() ? PSTR("On") : PSTR("Off"), false);
- oled_write_P(PSTR("Last Key: "), false);
- oled_write_ln(current_alpha_oled, false);
-#ifdef RGBLIGHT_ENABLE
- static char rgbStatusLine1[26] = {0};
- snprintf(rgbStatusLine1, sizeof(rgbStatusLine1), "RGB Mode: %d", rgblight_get_mode());
- oled_write_ln(rgbStatusLine1, false);
- static char rgbStatusLine2[26] = {0};
- snprintf(rgbStatusLine2, sizeof(rgbStatusLine2), "h:%d s:%d v:%d", rgblight_get_hue(), rgblight_get_sat(), rgblight_get_val());
- oled_write_ln(rgbStatusLine2, false);
-#endif
- return false;
-}
-#endif
diff --git a/keyboards/anavi/macropad8/keymaps/zoom/keymap.c b/keyboards/anavi/macropad8/keymaps/zoom/keymap.c
deleted file mode 100644
index 965bbec429..0000000000
--- a/keyboards/anavi/macropad8/keymaps/zoom/keymap.c
+++ /dev/null
@@ -1,97 +0,0 @@
- /* Copyright 2020 Leon Anavi <leon@anavi.org>
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- */
-
-#include QMK_KEYBOARD_H
-
-#define _MAIN 0
-#define _FN 1
-
-#define KC_X0 LT(_FN, KC_ESC)
-
-#ifdef RGBLIGHT_ENABLE
-// How long (in ms) to wait between animation steps for the rainbow mode
-const uint8_t RGBLED_RAINBOW_MOOD_INTERVALS[] PROGMEM = {60, 30, 15};
-// How long (in milliseconds) to wait between animation steps for each of the "Swirling rainbow" animations
-const uint8_t RGBLED_RAINBOW_SWIRL_INTERVALS[] PROGMEM = {20, 10, 4};
-#endif
-
-/*
- * The keymap contains the following shortcuts for Zoom meeting:
- *
- * Alt+V: Start/stop video
- * Alt+A: Mute/unmute my audio
- * Alt+M: Mute/unmute audio for everyone except the host
- * Alt+S: Start/stop screen sharing
- * Alt+R: Start/stop local recording
- * Alt+P: Pause/resume recording
- * Alt+C: Start/stop cloud recording
- */
-
-const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
- [_MAIN] = LAYOUT_ortho_2x4(
- LALT(KC_V), LALT(KC_A), LALT(KC_M), LALT(KC_S),
- LALT(KC_R), LALT(KC_P), LALT(KC_C), MO(_FN)
- ),
-
- [_FN] = LAYOUT_ortho_2x4(
- RGB_TOG, RGB_MOD, RGB_M_R, RGB_M_SN,
- BL_TOGG, BL_STEP, BL_BRTG, _______
- )
-};
-
-#ifdef OLED_ENABLE
-oled_rotation_t oled_init_user(oled_rotation_t rotation) {
- return OLED_ROTATION_180; // flips the display 180 degrees if offhand
-}
-
-bool oled_task_user(void) {
- // Host Keyboard Layer Status
- oled_write_ln_P(PSTR("ANAVI Macro Pad 8"), false);
- oled_write_P(PSTR("Active layer: "), false);
-
- switch (get_highest_layer(layer_state)) {
- case _MAIN:
- oled_write_ln_P(PSTR("Zoom"), false);
- break;
- case _FN:
- oled_write_ln_P(PSTR("FN"), false);
- break;
- default:
- // Or use the write_ln shortcut over adding '\n' to the end of your string
- oled_write_ln_P(PSTR("N/A"), false);
- }
-
- // Host Keyboard LED Status
- led_t led_state = host_keyboard_led_state();
- oled_write_P(PSTR("Num Lock: "), false);
- oled_write_ln_P(led_state.num_lock ? PSTR("On") : PSTR("Off"), false);
- oled_write_P(PSTR("Caps Lock: "), false);
- oled_write_ln_P(led_state.caps_lock ? PSTR("On") : PSTR("Off"), false);
- oled_write_P(PSTR("Scroll Lock: "), false);
- oled_write_ln_P(led_state.scroll_lock ? PSTR("On") : PSTR("Off"), false);
- oled_write_P(PSTR("Backlit: "), false);
- oled_write_ln_P(is_backlight_enabled() ? PSTR("On") : PSTR("Off"), false);
-#ifdef RGBLIGHT_ENABLE
- static char rgbStatusLine1[26] = {0};
- snprintf(rgbStatusLine1, sizeof(rgbStatusLine1), "RGB Mode: %d", rgblight_get_mode());
- oled_write_ln(rgbStatusLine1, false);
- static char rgbStatusLine2[26] = {0};
- snprintf(rgbStatusLine2, sizeof(rgbStatusLine2), "h:%d s:%d v:%d", rgblight_get_hue(), rgblight_get_sat(), rgblight_get_val());
- oled_write_ln(rgbStatusLine2, false);
-#endif
- return false;
-}
-#endif