diff options
Diffstat (limited to 'keyboards/cluecard/keymaps/rgb_effects/keymap.c')
| -rw-r--r-- | keyboards/cluecard/keymaps/rgb_effects/keymap.c | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/keyboards/cluecard/keymaps/rgb_effects/keymap.c b/keyboards/cluecard/keymaps/rgb_effects/keymap.c new file mode 100644 index 000000000..74c95ce8a --- /dev/null +++ b/keyboards/cluecard/keymaps/rgb_effects/keymap.c | |||
| @@ -0,0 +1,28 @@ | |||
| 1 | #include "cluecard.h" | ||
| 2 | |||
| 3 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
| 4 | [0] = KEYMAP( | ||
| 5 | RGB_TOG, RGB_SAI, RGB_VAI, \ | ||
| 6 | RGB_HUD, RGB_HUI, \ | ||
| 7 | RGB_MOD, RGB_SAD, RGB_VAD, \ | ||
| 8 | BL_STEP, \ | ||
| 9 | KC_NO, KC_NO, KC_NO \ | ||
| 10 | ) | ||
| 11 | }; | ||
| 12 | |||
| 13 | const uint8_t RGBLED_SNAKE_INTERVALS[] PROGMEM = {255, 170, 85}; | ||
| 14 | const uint8_t RGBLED_KNIGHT_INTERVALS[] PROGMEM = {255, 170, 85}; | ||
| 15 | |||
| 16 | void matrix_init_user(void) { | ||
| 17 | } | ||
| 18 | |||
| 19 | void matrix_scan_user(void) { | ||
| 20 | |||
| 21 | } | ||
| 22 | |||
| 23 | bool process_record_user(uint16_t keycode, keyrecord_t *record) { | ||
| 24 | return true; | ||
| 25 | } | ||
| 26 | |||
| 27 | void led_set_user(uint8_t usb_led) { | ||
| 28 | } | ||
