diff options
author | Danny Nguyen <danny@80pct.com> | 2017-04-03 12:06:28 -0400 |
---|---|---|
committer | Danny Nguyen <danny@80pct.com> | 2017-04-03 12:06:28 -0400 |
commit | 48f4c5997bd0e041379f592f3e1e0c306e5a5e4d (patch) | |
tree | eb23da8ad41fcd9be3257bdc7576325c053ee33c /keyboards/lets_split/keymaps/hexwire | |
parent | 344ebbac43ef510b29cdcdff2688186ee3ffead7 (diff) | |
download | qmk_firmware-48f4c5997bd0e041379f592f3e1e0c306e5a5e4d.tar.gz qmk_firmware-48f4c5997bd0e041379f592f3e1e0c306e5a5e4d.zip |
Move defines for RGB to after the config.h include
Diffstat (limited to 'keyboards/lets_split/keymaps/hexwire')
-rw-r--r-- | keyboards/lets_split/keymaps/hexwire/config.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/keyboards/lets_split/keymaps/hexwire/config.h b/keyboards/lets_split/keymaps/hexwire/config.h index 9c8c6d7f40..e5a779f633 100644 --- a/keyboards/lets_split/keymaps/hexwire/config.h +++ b/keyboards/lets_split/keymaps/hexwire/config.h @@ -20,13 +20,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. #define TAPPING_TERM 150 -#undef RGBLED_NUM -#define RGBLIGHT_ANIMATIONS -#define RGBLED_NUM 8 -#define RGBLIGHT_HUE_STEP 8 -#define RGBLIGHT_SAT_STEP 8 -#define RGBLIGHT_VAL_STEP 8 - #ifdef SUBPROJECT_rev1 #include "../../rev1/config.h" #define COMPACT_KEYMAP( \ @@ -68,3 +61,10 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. #ifdef SUBPROJECT_rev2fliphalf #include "../../rev2fliphalf/config.h" #endif + +#undef RGBLED_NUM +#define RGBLIGHT_ANIMATIONS +#define RGBLED_NUM 8 +#define RGBLIGHT_HUE_STEP 8 +#define RGBLIGHT_SAT_STEP 8 +#define RGBLIGHT_VAL_STEP 8 |