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.

40 lines
1.3 KiB

  1. /* Copyright
  2. * 2021 solartempest
  3. * 2021 QMK
  4. *
  5. * This program is free software: you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License as published by
  7. * the Free Software Foundation, either version 2 of the License, or
  8. * (at your option) any later version.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License
  16. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  17. */
  18. #pragma once
  19. #define TAP_CODE_DELAY 10
  20. // OLED settings
  21. #define OLED_TIMEOUT 80000
  22. #define OLED_BRIGHTNESS 90
  23. #define SPLIT_WPM_ENABLE
  24. #define SPLIT_OLED_ENABLE
  25. #define SPLIT_TRANSPORT_MIRROR
  26. // Add RGB underglow
  27. // by defining in the keyboard, incompatible keymaps will fail to compile.
  28. #ifdef RGBLIGHT_ENABLE
  29. # define RGBLED_NUM 74
  30. # define RGBLIGHT_HUE_STEP 10
  31. # define RGBLIGHT_SAT_STEP 17
  32. # define RGBLIGHT_VAL_STEP 17
  33. //# define RGBLIGHT_LAYERS //Enable layer light indicators. Not required as updates are done in layer_state_set_user and led_update_user (+588).
  34. # define RGBLIGHT_SLEEP //Turn off LEDs when computer sleeping (+72)
  35. #endif