summaryrefslogtreecommitdiff
path: root/keyboards/sixshooter/sixshooter.h
diff options
context:
space:
mode:
authorNicholas Shaff <nick@shadedream.com>2018-12-05 11:35:26 -0600
committerDrashna Jaelre <drashna@live.com>2018-12-05 09:35:26 -0800
commitd0da43fbdcb78603b34bcf6c0718e104b593c5ce (patch)
tree46d72e36f794b90f57642efbcaf209a849872590 /keyboards/sixshooter/sixshooter.h
parent7d4955b2c453828ab8ba315720ce73e4dae0a0c3 (diff)
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.h11
1 files changed, 0 insertions, 11 deletions
diff --git a/keyboards/sixshooter/sixshooter.h b/keyboards/sixshooter/sixshooter.h
index d27b1e419c..490d562d06 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); }