config.h 860 B

12345678910111213141516171819202122232425262728293031323334
  1. #pragma once
  2. // Use serial comms for split keyboard
  3. // DO NOT enable USE_IDC - board will not respond.
  4. #define USE_SERIAL
  5. //#define USE_I2C
  6. #ifdef RGBLIGHT_ENABLE
  7. // Enable animations. +5500 bytes
  8. #define RGBLIGHT_ANIMATIONS
  9. // Map my custom number of LED's
  10. #undef RGBLED_NUM
  11. #define RGBLED_NUM 16
  12. #define RGBLIGHT_LED_MAP { 0, 1, 2, 3, 4, 5, 6, 7, 15, 14, 13, 12, 11, 10, 9, 8 } // When changed, BE SURE to flash EEPROM on both halves and clear it.
  13. // DO NOT USE RGBLED_SPLIT - the slave board will stop responding.
  14. // Turn off RGB when computer sleeps
  15. #define RGBLIGHT_SLEEP
  16. // custom colors
  17. #define RGB_CLEAR 0x00, 0x00, 0x00
  18. // MOD indicators
  19. #define SHFT_LED1 7
  20. #define GUI_LED1 8
  21. #endif
  22. #ifdef AUDIO_ENABLE
  23. #define QMK_SPEAKER C6
  24. #define C6_AUDIO
  25. #define NO_MUSIC_MODE // Save 2000 bytes
  26. #endif