You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

96 lines
3.3 KiB

  1. /* Copyright 2020 Leon Anavi <leon@anavi.org>
  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. #include QMK_KEYBOARD_H
  17. #define _MAIN 0
  18. #define _FN 1
  19. #define KC_X0 LT(_FN, KC_ESC)
  20. #ifdef RGBLIGHT_ENABLE
  21. // How long (in ms) to wait between animation steps for the rainbow mode
  22. const uint8_t RGBLED_RAINBOW_MOOD_INTERVALS[] PROGMEM = {60, 30, 15};
  23. // How long (in milliseconds) to wait between animation steps for each of the "Swirling rainbow" animations
  24. const uint8_t RGBLED_RAINBOW_SWIRL_INTERVALS[] PROGMEM = {20, 10, 4};
  25. #endif
  26. /*
  27. * The keymap contains the following shortcuts for Zoom meeting:
  28. *
  29. * Alt+V: Start/stop video
  30. * Alt+A: Mute/unmute my audio
  31. * Alt+M: Mute/unmute audio for everyone except the host
  32. * Alt+S: Start/stop screen sharing
  33. * Alt+R: Start/stop local recording
  34. * Alt+P: Pause/resume recording
  35. * Alt+C: Start/stop cloud recording
  36. */
  37. const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
  38. [_MAIN] = LAYOUT_ortho_2x4(
  39. LALT(KC_V), LALT(KC_A), LALT(KC_M), LALT(KC_S),
  40. LALT(KC_R), LALT(KC_P), LALT(KC_C), MO(_FN)
  41. ),
  42. [_FN] = LAYOUT_ortho_2x4(
  43. RGB_TOG, RGB_MOD, RGB_M_R, RGB_M_SN,
  44. BL_TOGG, BL_STEP, BL_BRTG, _______
  45. )
  46. };
  47. #ifdef OLED_ENABLE
  48. oled_rotation_t oled_init_user(oled_rotation_t rotation) {
  49. return OLED_ROTATION_180; // flips the display 180 degrees if offhand
  50. }
  51. void oled_task_user(void) {
  52. // Host Keyboard Layer Status
  53. oled_write_ln_P(PSTR("ANAVI Macro Pad 8"), false);
  54. oled_write_P(PSTR("Active layer: "), false);
  55. switch (get_highest_layer(layer_state)) {
  56. case _MAIN:
  57. oled_write_ln_P(PSTR("Zoom"), false);
  58. break;
  59. case _FN:
  60. oled_write_ln_P(PSTR("FN"), false);
  61. break;
  62. default:
  63. // Or use the write_ln shortcut over adding '\n' to the end of your string
  64. oled_write_ln_P(PSTR("N/A"), false);
  65. }
  66. // Host Keyboard LED Status
  67. led_t led_state = host_keyboard_led_state();
  68. oled_write_P(PSTR("Num Lock: "), false);
  69. oled_write_ln_P(led_state.num_lock ? PSTR("On") : PSTR("Off"), false);
  70. oled_write_P(PSTR("Caps Lock: "), false);
  71. oled_write_ln_P(led_state.caps_lock ? PSTR("On") : PSTR("Off"), false);
  72. oled_write_P(PSTR("Scroll Lock: "), false);
  73. oled_write_ln_P(led_state.scroll_lock ? PSTR("On") : PSTR("Off"), false);
  74. oled_write_P(PSTR("Backlit: "), false);
  75. oled_write_ln_P(is_backlight_enabled() ? PSTR("On") : PSTR("Off"), false);
  76. #ifdef RGBLIGHT_ENABLE
  77. static char rgbStatusLine1[26] = {0};
  78. snprintf(rgbStatusLine1, sizeof(rgbStatusLine1), "RGB Mode: %d", rgblight_get_mode());
  79. oled_write_ln(rgbStatusLine1, false);
  80. static char rgbStatusLine2[26] = {0};
  81. snprintf(rgbStatusLine2, sizeof(rgbStatusLine2), "h:%d s:%d v:%d", rgblight_get_hue(), rgblight_get_sat(), rgblight_get_val());
  82. oled_write_ln(rgbStatusLine2, false);
  83. #endif
  84. }
  85. #endif