rgb_backlight_api.h 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. /* Copyright 2017 Jason Williams (Wilba)
  2. *
  3. * This program is free software: you can redistribute it and/or modify
  4. * it under the terms of the GNU General Public License as published by
  5. * the Free Software Foundation, either version 2 of the License, or
  6. * (at your option) any later version.
  7. *
  8. * This program is distributed in the hope that it will be useful,
  9. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. * GNU General Public License for more details.
  12. *
  13. * You should have received a copy of the GNU General Public License
  14. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  15. */
  16. #pragma once
  17. enum backlight_config_value
  18. {
  19. id_use_split_backspace = 0x01,
  20. id_use_split_left_shift = 0x02,
  21. id_use_split_right_shift = 0x03,
  22. id_use_7u_spacebar = 0x04,
  23. id_use_iso_enter = 0x05,
  24. id_disable_hhkb_blocker_leds = 0x06,
  25. id_disable_when_usb_suspended = 0x07,
  26. id_disable_after_timeout = 0x08,
  27. id_brightness = 0x09,
  28. id_effect = 0x0A,
  29. id_effect_speed = 0x0B,
  30. id_color_1 = 0x0C,
  31. id_color_2 = 0x0D,
  32. id_caps_lock_indicator_color = 0x0E,
  33. id_caps_lock_indicator_row_col = 0x0F,
  34. id_layer_1_indicator_color = 0x10,
  35. id_layer_1_indicator_row_col = 0x11,
  36. id_layer_2_indicator_color = 0x12,
  37. id_layer_2_indicator_row_col = 0x13,
  38. id_layer_3_indicator_color = 0x14,
  39. id_layer_3_indicator_row_col = 0x15,
  40. id_alphas_mods = 0x16
  41. };