0ec0d29e9f
* add Userspace and keymaps * Adding keymaps for zeal60 and iris * Created my own tap dance that toggles RGB Mode based on whether I toggled caps lock or not * parent 578ed42a7f8f986147cad040d50d4ae1d24a32e2 author Seth Barberee <seth.barberee@gmail.com> 1565065903 -0500 committer Seth Barberee <seth.barberee@gmail.com> 1565065903 -0500 move to userspace add zeal60 * update based on review * move userspace to github name
37 lines
1.2 KiB
C
37 lines
1.2 KiB
C
#pragma once
|
|
|
|
/* enable/disable LEDs based on layout */
|
|
#undef RGB_BACKLIGHT_USE_SPLIT_BACKSPACE
|
|
#define RGB_BACKLIGHT_USE_SPLIT_BACKSPACE 1
|
|
|
|
#undef RGB_BACKLIGHT_USE_SPLIT_LEFT_SHIFT
|
|
#define RGB_BACKLIGHT_USE_SPLIT_LEFT_SHIFT 0
|
|
|
|
#undef RGB_BACKLIGHT_USE_SPLIT_RIGHT_SHIFT
|
|
#define RGB_BACKLIGHT_USE_SPLIT_RIGHT_SHIFT 1
|
|
|
|
#undef RGB_BACKLIGHT_USE_7U_SPACEBAR
|
|
#define RGB_BACKLIGHT_USE_7U_SPACEBAR 1
|
|
|
|
#undef RGB_BACKLIGHT_USE_ISO_ENTER
|
|
#define RGB_BACKLIGHT_USE_ISO_ENTER 0
|
|
|
|
#undef RGB_BACKLIGHT_DISABLE_HHKB_BLOCKER_LEDS
|
|
#define RGB_BACKLIGHT_DISABLE_HHKB_BLOCKER_LEDS 0
|
|
|
|
// disable backlight when USB suspended (PC sleep/hibernate/shutdown)
|
|
//
|
|
#undef RGB_BACKLIGHT_DISABLE_WHEN_USB_SUSPENDED
|
|
#define RGB_BACKLIGHT_DISABLE_WHEN_USB_SUSPENDED 1
|
|
|
|
#undef RGB_BACKLIGHT_EFFECT
|
|
#define RGB_BACKLIGHT_EFFECT 5
|
|
|
|
#undef RGB_BACKLIGHT_CAPS_LOCK_INDICATOR
|
|
#undef RGB_BACKLIGHT_LAYER_2_INDICATOR
|
|
#undef RGB_BACKLIGHT_LAYER_3_INDICATOR
|
|
|
|
#define RGB_BACKLIGHT_CAPS_LOCK_INDICATOR { .color = { .h = 0, .s= 255}, .index = 254}
|
|
#define RGB_BACKLIGHT_LAYER_2_INDICATOR { .color = { .h = 150, .s = 255 }, .index = 60-1 } //blue
|
|
#define RGB_BACKLIGHT_LAYER_3_INDICATOR { .color = { .h = 100, .s = 255 }, .index = 60-1 } //blue
|
|
|