[Keyboard] Update default keymap, change RGB LEDs to 4 for Rev. 1.1 (#5086)

This commit is contained in:
Danny 2019-02-08 18:35:49 -05:00 committed by Drashna Jaelre
parent aea45c5483
commit f4f75acbd6
2 changed files with 15 additions and 10 deletions

View File

@ -50,7 +50,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
#define RGB_DI_PIN D3
#ifdef RGB_DI_PIN
#define RGBLED_NUM 3
#define RGBLED_NUM 4
#define RGBLIGHT_HUE_STEP 8
#define RGBLIGHT_SAT_STEP 8
#define RGBLIGHT_VAL_STEP 8

View File

@ -17,25 +17,30 @@
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
[0] = LAYOUT(
KC_A, KC_B, KC_C, \
BL_STEP, KC_UP, RGB_MOD, \
KC_MUTE, KC_HOME, KC_MPLY, \
MO(1), KC_UP, RGB_MOD, \
KC_LEFT, KC_DOWN, KC_RGHT \
),
[1] = LAYOUT(
RESET, BL_STEP, KC_STOP, \
_______, KC_HOME, RGB_MOD, \
KC_MPRV, KC_END, KC_MNXT \
),
};
void encoder_update_user(uint8_t index, bool clockwise) {
if (index == 0) {
if (clockwise) {
tap_code(KC_VOLU);
} else {
tap_code(KC_VOLD);
}
}
else if (index == 1) {
if (clockwise) {
tap_code(KC_PGDN);
} else {
tap_code(KC_PGUP);
}
}
else if (index == 1) {
if (clockwise) {
tap_code(KC_DOWN);
} else {
tap_code(KC_UP);
}
}
}