logo

qmk_firmware

custom branch of QMK firmware git clone https://anongit.hacktivis.me/git/qmk_firmware.git

config.h (524B)


  1. // Copyright 2022 L. Mistry (@schwarzer-geiger)
  2. // SPDX-License-Identifier: GPL-2.0-or-later
  3. #pragma once
  4. // Thumbstick settings
  5. #define ANALOG_JOYSTICK_X_AXIS_PIN B5
  6. #define ANALOG_JOYSTICK_Y_AXIS_PIN B6
  7. // Thumbstick defaults
  8. #ifndef SCROLLING_LAYER
  9. #define SCROLLING_LAYER 1
  10. #endif
  11. #ifndef TAPPING_LAYER
  12. #define TAPPING_LAYER 2
  13. #endif
  14. #ifndef CURSOR_SPEED
  15. #define CURSOR_SPEED 70
  16. #endif
  17. #ifndef SCROLL_SPEED
  18. #define SCROLL_SPEED 25
  19. #endif
  20. #ifndef SCROLL_DELAY_MS
  21. #define SCROLL_DELAY_MS 70
  22. #endif