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.

118 lines
5.1 KiB

  1. # LED Indicators
  2. ?> This feature requires additional configuration to work on both halves of a split keyboard see [Data sync options](feature_split_keyboard.md#data-sync-options)
  3. QMK provides methods to read 5 of the LEDs defined in the HID spec:
  4. * Num Lock
  5. * Caps Lock
  6. * Scroll Lock
  7. * Compose
  8. * Kana
  9. There are three ways to get the lock LED state:
  10. * by specifying configuration options within `config.h`
  11. * by implementing `bool led_update_kb(led_t led_state)` or `_user(led_t led_state)`; or
  12. * by calling `led_t host_keyboard_led_state()`
  13. !> `host_keyboard_led_state()` may already reflect a new value before `led_update_user()` is called.
  14. Two more deprecated functions exist that provide the LED state as a `uint8_t`:
  15. * `uint8_t led_set_kb(uint8_t usb_led)` and `_user(uint8_t usb_led)`
  16. * `uint8_t host_keyboard_leds()`
  17. ## Configuration Options
  18. To configure the indicators, `#define` these in your `config.h`:
  19. |Define |Default |Description |
  20. |---------------------|-------------|-------------------------------------------|
  21. |`LED_NUM_LOCK_PIN` |*Not defined*|The pin that controls the `Num Lock` LED |
  22. |`LED_CAPS_LOCK_PIN` |*Not defined*|The pin that controls the `Caps Lock` LED |
  23. |`LED_SCROLL_LOCK_PIN`|*Not defined*|The pin that controls the `Scroll Lock` LED|
  24. |`LED_COMPOSE_PIN` |*Not defined*|The pin that controls the `Compose` LED |
  25. |`LED_KANA_PIN` |*Not defined*|The pin that controls the `Kana` LED |
  26. |`LED_PIN_ON_STATE` |`1` |The state of the indicator pins when the LED is "on" - `1` for high, `0` for low|
  27. Unless you are designing your own keyboard, you generally should not need to change the above config options.
  28. ## `led_update_*()`
  29. When the configuration options do not provide enough flexibility, the API hooks provided allow custom control of the LED behavior. These functions will be called when the state of one of those 5 LEDs changes. It receives the LED state as a struct parameter.
  30. By convention, return `true` from `led_update_user()` to get the `led_update_kb()` hook to run its code, and
  31. return `false` when you would prefer not to run the code in `led_update_kb()`.
  32. Some examples include:
  33. - overriding the LEDs to use them for something else like layer indication
  34. - return `false` because you do not want the `_kb()` function to run, as it would override your layer behavior.
  35. - play a sound when an LED turns on or off.
  36. - return `true` because you want the `_kb` function to run, and this is in addition to the default LED behavior.
  37. ?> Because the `led_set_*` functions return `void` instead of `bool`, they do not allow for overriding the keyboard LED control, and thus it's recommended to use `led_update_*` instead.
  38. ### Example `led_update_kb()` Implementation
  39. ```c
  40. bool led_update_kb(led_t led_state) {
  41. bool res = led_update_user(led_state);
  42. if(res) {
  43. // writePin sets the pin high for 1 and low for 0.
  44. // In this example the pins are inverted, setting
  45. // it low/0 turns it on, and high/1 turns the LED off.
  46. // This behavior depends on whether the LED is between the pin
  47. // and VCC or the pin and GND.
  48. writePin(B0, !led_state.num_lock);
  49. writePin(B1, !led_state.caps_lock);
  50. writePin(B2, !led_state.scroll_lock);
  51. writePin(B3, !led_state.compose);
  52. writePin(B4, !led_state.kana);
  53. }
  54. return res;
  55. }
  56. ```
  57. ### Example `led_update_user()` Implementation
  58. This incomplete example would play a sound if Caps Lock is turned on or off. It returns `true`, because you also want the LEDs to maintain their state.
  59. ```c
  60. #ifdef AUDIO_ENABLE
  61. float caps_on[][2] = SONG(CAPS_LOCK_ON_SOUND);
  62. float caps_off[][2] = SONG(CAPS_LOCK_OFF_SOUND);
  63. #endif
  64. bool led_update_user(led_t led_state) {
  65. #ifdef AUDIO_ENABLE
  66. static uint8_t caps_state = 0;
  67. if (caps_state != led_state.caps_lock) {
  68. led_state.caps_lock ? PLAY_SONG(caps_on) : PLAY_SONG(caps_off);
  69. caps_state = led_state.caps_lock;
  70. }
  71. #endif
  72. return true;
  73. }
  74. ```
  75. ### `led_update_*` Function Documentation
  76. * Keyboard/Revision: `bool led_update_kb(led_t led_state)`
  77. * Keymap: `bool led_update_user(led_t led_state)`
  78. ## `host_keyboard_led_state()`
  79. Call this function to get the last received LED state as a `led_t`. This is useful for reading the LED state outside `led_update_*`, e.g. in [`matrix_scan_user()`](#matrix-scanning-code).
  80. ## Setting Physical LED State
  81. Some keyboard implementations provide convenience methods for setting the state of the physical LEDs.
  82. ### Ergodox Boards
  83. The Ergodox implementations provide `ergodox_right_led_1`/`2`/`3_on`/`off()` to turn individual LEDs on or off, as well as `ergodox_right_led_on`/`off(uint8_t led)` to turn them on or off by their index.
  84. In addition, it is possible to specify the brightness level of all LEDs with `ergodox_led_all_set(uint8_t n)`; of individual LEDs with `ergodox_right_led_1`/`2`/`3_set(uint8_t n)`; or by index with `ergodox_right_led_set(uint8_t led, uint8_t n)`.
  85. Ergodox boards also define `LED_BRIGHTNESS_LO` for the lowest brightness and `LED_BRIGHTNESS_HI` for the highest brightness (which is the default).