diff --git a/users/raphaelmor/README.md b/users/raphaelmor/README.md index 71a3f97b..35d69ff1 100644 --- a/users/raphaelmor/README.md +++ b/users/raphaelmor/README.md @@ -8,9 +8,10 @@ - ~Other Layers~ - ~All extra (Boot, base layer, layer lock, etc...)~ - ~Check Miryoku code~ -- ~Find a solution for Space and 't' in HDG layout (switch space and enter, and add combo for tab ?)~ +- ~Find a solution for Space and 't' in HDG layout~ - ~switch to split 3x6 ex2 version of the layout~ - Combos - ~z Combo~ - ~Qu combo + linger~ +- RGB Matrix - Adaptive keys diff --git a/users/raphaelmor/config.h b/users/raphaelmor/config.h index 97a4ad1e..5065bb22 100644 --- a/users/raphaelmor/config.h +++ b/users/raphaelmor/config.h @@ -24,6 +24,57 @@ #undef MOUSEKEY_TIME_TO_MAX #define MOUSEKEY_TIME_TO_MAX 64 +#define SPLIT_LAYER_STATE_ENABLE // CUSTOM CONFIG #define RAMO_COMBO_HOLD (TAPPING_TERM) // time to hold to trigger delayed combo + + + +// Disable led stuff +#undef ENABLE_RGB_MATRIX_ALPHAS_MODS +#undef ENABLE_RGB_MATRIX_GRADIENT_UP_DOWN +#undef ENABLE_RGB_MATRIX_GRADIENT_LEFT_RIGHT +#undef ENABLE_RGB_MATRIX_BREATHING +#undef ENABLE_RGB_MATRIX_BAND_SAT +#undef ENABLE_RGB_MATRIX_BAND_VAL +#undef ENABLE_RGB_MATRIX_BAND_PINWHEEL_SAT +#undef ENABLE_RGB_MATRIX_BAND_PINWHEEL_VAL +#undef ENABLE_RGB_MATRIX_BAND_SPIRAL_SAT +#undef ENABLE_RGB_MATRIX_BAND_SPIRAL_VAL +#undef ENABLE_RGB_MATRIX_CYCLE_ALL +#undef ENABLE_RGB_MATRIX_CYCLE_LEFT_RIGHT +#undef ENABLE_RGB_MATRIX_CYCLE_UP_DOWN +#undef ENABLE_RGB_MATRIX_RAINBOW_MOVING_CHEVRON +#undef ENABLE_RGB_MATRIX_CYCLE_OUT_IN +#undef ENABLE_RGB_MATRIX_CYCLE_OUT_IN_DUAL +#undef ENABLE_RGB_MATRIX_CYCLE_PINWHEEL +#undef ENABLE_RGB_MATRIX_CYCLE_SPIRAL +#undef ENABLE_RGB_MATRIX_DUAL_BEACON +#undef ENABLE_RGB_MATRIX_RAINBOW_BEACON +#undef ENABLE_RGB_MATRIX_RAINBOW_PINWHEELS +#undef ENABLE_RGB_MATRIX_FLOWER_BLOOMING +#undef ENABLE_RGB_MATRIX_RAINDROPS +#undef ENABLE_RGB_MATRIX_JELLYBEAN_RAINDROPS +#undef ENABLE_RGB_MATRIX_HUE_BREATHING +#undef ENABLE_RGB_MATRIX_HUE_PENDULUM +#undef ENABLE_RGB_MATRIX_HUE_WAVE +#undef ENABLE_RGB_MATRIX_PIXEL_FRACTAL +#undef ENABLE_RGB_MATRIX_PIXEL_FLOW +#undef ENABLE_RGB_MATRIX_PIXEL_RAIN + +#undef ENABLE_RGB_MATRIX_TYPING_HEATMAP +#undef ENABLE_RGB_MATRIX_DIGITAL_RAIN + +#undef ENABLE_RGB_MATRIX_SOLID_REACTIVE_SIMPLE +#undef ENABLE_RGB_MATRIX_SOLID_REACTIVE +#undef ENABLE_RGB_MATRIX_SOLID_REACTIVE_WIDE +#undef ENABLE_RGB_MATRIX_SOLID_REACTIVE_MULTIWIDE +#undef ENABLE_RGB_MATRIX_SOLID_REACTIVE_CROSS +#undef ENABLE_RGB_MATRIX_SOLID_REACTIVE_MULTICROSS +#undef ENABLE_RGB_MATRIX_SOLID_REACTIVE_NEXUS +#undef ENABLE_RGB_MATRIX_SOLID_REACTIVE_MULTINEXUS +#undef ENABLE_RGB_MATRIX_SPLASH +#undef ENABLE_RGB_MATRIX_MULTISPLASH +#undef ENABLE_RGB_MATRIX_SOLID_SPLASH +#undef ENABLE_RGB_MATRIX_SOLID_MULTISPLASH diff --git a/users/raphaelmor/raphaelmor.c b/users/raphaelmor/raphaelmor.c index 8f794e54..3ecd33e4 100644 --- a/users/raphaelmor/raphaelmor.c +++ b/users/raphaelmor/raphaelmor.c @@ -2,10 +2,10 @@ #include "raphaelmor.h" void keyboard_post_init_user(void) { - // Customise these values to desired behaviour - debug_enable=true; - // debug_keyboard=true; - // debug_mouse=true; + // Customise these values to desired behaviour + debug_enable=true; + // rgb_matrix_mode_noeeprom(RGB_MATRIX_SOLID_COLOR); + // rgb_matrix_sethsv_noeeprom(HSV_OFF); }; // Info shared by subroutines (tap_dance, combos, etc..) @@ -23,3 +23,5 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) { // Include combo processing code #include "combos.c" + + diff --git a/users/raphaelmor/rules.mk b/users/raphaelmor/rules.mk index 80e92cb3..03280b6e 100644 --- a/users/raphaelmor/rules.mk +++ b/users/raphaelmor/rules.mk @@ -8,5 +8,6 @@ COMBO_ENABLE = yes INTROSPECTION_KEYMAP_C += raphaelmor.c RGBLIGHT_ENABLE = no -RGB_MATRIX_ENABLE = no +RGB_MATRIX_ENABLE = yes +RGB_MATRIX_CUSTOM_USER = yes