Compare commits

...

4 Commits

Author SHA1 Message Date
Paul Warren 9cfecee866 68keys updates 2020-06-24 20:47:13 +10:00
Paul Warren f436f28b29 kbd75 comment updates 2020-06-24 20:47:06 +10:00
Paul Warren f2f291dfa5 Add backlights to MF68k 2020-06-21 12:43:36 +10:00
Paul Warren bc32e6ccba Adjust indicator LED positions 2020-06-21 12:43:21 +10:00
3 changed files with 10 additions and 10 deletions

View File

@ -10,9 +10,9 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
),
[1] = LAYOUT_68_ansi(
KC_GRV, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, KC_BSPC, KC_VOLU, KC_HOME,
_______, _______, _______, KC_UP, _______, _______, _______, _______, _______, _______, _______, _______, BL_STEP, RESET, KC_VOLD, KC_END,
_______, _______, KC_HOME, KC_UP, KC_END, _______, _______, _______, _______, _______, _______, _______, BL_STEP, RESET, KC_VOLD, KC_END,
_______, _______, KC_LEFT, KC_DOWN, KC_RGHT, _______, _______, _______, _______, _______, _______, _______, _______,
_______, _______, _______, _______, _______, _______, _______, KC_MUTE, _______, _______, _______, _______, KC_MUTE,
_______, BL_DEC, BL_INC, BL_TOGG, BL_ON, BL_OFF, _______, _______, _______, _______, _______, _______, KC_MUTE,
_______, _______, _______, _______, _______, _______, _______, KC_MPRV, KC_MPLY, KC_MNXT
),
};

View File

@ -1,5 +1,5 @@
BOOTLOADER = atmel-dfu
BOOTLOADER = avrdude
EXTRAKEY_ENABLE = yes
CONSOLE_ENABLE = no
BACKLIGHT_ENABLE = no
CONSOLE_ENABLE = yes
BACKLIGHT_ENABLE = yes

View File

@ -113,17 +113,17 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) {
// Lighting effects
// Light LEDs 6 to 9 and 12 to 15 red when caps lock is active. Hard to ignore!
// Light LEDs 14 & 15 red when caps lock is active. Hard to ignore!
const rgblight_segment_t PROGMEM my_capslock_layer[] = RGBLIGHT_LAYER_SEGMENTS(
{12, 4, HSV_RED} // Light 4 LEDs, starting with LED 6
{14, 2, HSV_RED} // Light 2 LEDs, starting with LED 14
);
// Light LEDs 9 & 10 in cyan when keyboard layer 1 is active
// Light LEDs 12 & 13 in green when keyboard layer 1 is active
const rgblight_segment_t PROGMEM my_layer1_layer[] = RGBLIGHT_LAYER_SEGMENTS(
{10, 2, HSV_GREEN}
{12, 2, HSV_GREEN}
);
// Light LEDs 11 & 12 in purple when keyboard layer 2 is active
// Light LEDs 7 & 8 in green when keyboard layer 2 is active
const rgblight_segment_t PROGMEM my_layer2_layer[] = RGBLIGHT_LAYER_SEGMENTS(
{8, 2, HSV_GREEN}
);