Kiibohd Controller
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
Este repositório está arquivado. Você pode visualizar os arquivos e realizar clone, mas não poderá realizar push nem abrir issues e pull requests.

capabilities.kll 898B

1234567891011121314151617181920
  1. Name = MatrixArmCapabilities;
  2. Version = 0.1;
  3. Author = "HaaTa (Jacob Alexander) 2015";
  4. KLL = 0.3a;
  5. # Modified Date
  6. Date = 2015-02-28;
  7. # Defines available to the MatrixArm sub-module
  8. # This debounce scheme uses a rolling counter for press/unpress on each key
  9. # Each counter is incremented if pressed/unpressed and the opposite counter is divided by 2
  10. # Using the default division threshold (0xFFFF), there are approximately 13 cycles in a perfect cycle
  11. # If debounce is actually necessary, this will increase (better switches will debounce faster)
  12. #
  13. # The maximum threshold is 0xFFFFFFFF, which will give around ~32 -> 36 cycles per perfect cycle
  14. # Using a threshold higher than 0xFFFF will require 32 bit variables, and double the ram usage.
  15. DebounceDivThreshold => DebounceDivThreshold_define;
  16. DebounceDivThreshold = 0xFFFF; # Default debounce
  17. #DebounceDivThreshold = 0xFFFFFFFF; # Max debounce