diff options
author | Nicholas Shaff <nick@shadedream.com> | 2018-12-05 11:35:26 -0600 |
---|---|---|
committer | Drashna Jaelre <drashna@live.com> | 2018-12-05 09:35:26 -0800 |
commit | d0da43fbdcb78603b34bcf6c0718e104b593c5ce (patch) | |
tree | 46d72e36f794b90f57642efbcaf209a849872590 /keyboards/sixshooter/sixshooter.h | |
parent | 7d4955b2c453828ab8ba315720ce73e4dae0a0c3 (diff) | |
download | qmk_firmware-d0da43fbdcb78603b34bcf6c0718e104b593c5ce.tar.gz |
Keyboard: Updated sixshooter keyboard to move LED macros into the default keymap. (#4428)
Diffstat (limited to 'keyboards/sixshooter/sixshooter.h')
-rw-r--r-- | keyboards/sixshooter/sixshooter.h | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/keyboards/sixshooter/sixshooter.h b/keyboards/sixshooter/sixshooter.h index d27b1e419..490d562d0 100644 --- a/keyboards/sixshooter/sixshooter.h +++ b/keyboards/sixshooter/sixshooter.h @@ -10,17 +10,6 @@ { K00, K01, K02, K03, K04, K05 }, \ } - -/* - * Define keyboard specific keycodes for controlling on/off for all LEDs as they - * are all on different pins with this PCB, rather than a single backlight pin - */ -enum keyboard_keycode { - SS_LON = SAFE_RANGE, - SS_LOFF, - SAFE_RANGE_KB -}; - inline void sixshooter_led_0_on(void) { DDRB |= (1<<6); PORTB |= (1<<6); } inline void sixshooter_led_1_on(void) { DDRC |= (1<<7); PORTC |= (1<<7); } inline void sixshooter_led_2_on(void) { DDRD |= (1<<0); PORTD |= (1<<0); } |