Kiibohd Controller
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.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

capabilities.kll 1.4KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. Name = STLcdCapabilities;
  2. Version = 0.1;
  3. Author = "HaaTa (Jacob Alexander) 2015";
  4. KLL = 0.3c;
  5. # Modified Date
  6. Date = 2015-08-01;
  7. # Defines available to the STLcd sub-module
  8. # PWM Prescalar
  9. # In general this can be left alone
  10. # A higher prescalar should be lower power usage (less switching)
  11. # However, flickering may be noticeable.
  12. #
  13. # Here's a calculation table valid at a 72 MHz system clock
  14. # Prescalars range from 0 to 7 (1 to 128)
  15. # 0 - 72 MHz - Highest power usage/best result
  16. # 1 - 36 MHz
  17. # 2 - 18 MHz
  18. # 3 - 9 MHz - Slightly visible flicker (peripheral vision)
  19. # 4 - 4 500 kHz - Visible flickering
  20. # 5 - 2 250 kHz
  21. # 6 - 1 125 kHz
  22. # 7 - 562 500 Hz
  23. # Defaulting to no prescalar, looks the best
  24. STLcdBacklightPrescalar => STLcdBacklightPrescalar_define;
  25. STLcdBacklightPrescalar = 0;
  26. # Default Backlight Channel Brightness
  27. # There are 3 channels, RGB
  28. # In order to get other colors you must mix the 3 colors
  29. # Each channel is a 16-bit register (65536 levels)
  30. # Technically, this means, the backlight is a 48-bit RGB pixel
  31. # In practice, it may be difficult to get color consistency at times if too bright or too dim
  32. STLcdBacklightRed => STLcdBacklightRed_define;
  33. STLcdBacklightGreen => STLcdBacklightGreen_define;
  34. STLcdBacklightBlue => STLcdBacklightBlue_define;
  35. # Defaults to 6% brightness, white
  36. STLcdBacklightRed = 0xFFF;
  37. STLcdBacklightGreen = 0xFFF;
  38. STLcdBacklightBlue = 0xFFF;