summaryrefslogtreecommitdiffstats
path: root/keyboards/kinesis/keymaps
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/kinesis/keymaps')
-rw-r--r--keyboards/kinesis/keymaps/xyverz/keymap.c52
-rw-r--r--keyboards/kinesis/keymaps/xyverz/readme.md4
2 files changed, 3 insertions, 53 deletions
diff --git a/keyboards/kinesis/keymaps/xyverz/keymap.c b/keyboards/kinesis/keymaps/xyverz/keymap.c
index 533047b15..1025df076 100644
--- a/keyboards/kinesis/keymaps/xyverz/keymap.c
+++ b/keyboards/kinesis/keymaps/xyverz/keymap.c
@@ -299,58 +299,6 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) {
return true;
};
-// getting the LEDs working...
-void led_set_user(uint8_t usb_led) {
-
- DDRF |= (1<<0); // Keypad LED
- if (usb_led & (1<<USB_LED_COMPOSE)) {
- PORTF |= (1<<0);
- } else {
- PORTF &= ~(1<<0);
- }
-
- DDRF |= (1<<1); // ScrLock LED
- if (usb_led & (1<<USB_LED_SCROLL_LOCK)) {
- PORTF |= (1<<1);
- } else {
- PORTF &= ~(1<<1);
- }
-
- DDRF |= (1<<2); // NumLock LED
- if (usb_led & (1<<USB_LED_NUM_LOCK)) {
- PORTF |= (1<<2);
- } else {
- PORTF &= ~(1<<2);
- }
-
- DDRF |= (1<<3); // CapsLock LED
- if (usb_led & (1<<USB_LED_CAPS_LOCK)) {
- PORTF |= (1<<3);
- } else {
- PORTF &= ~(1<<3);
- }
-
-}
-
// Runs just one time when the keyboard initializes.
void matrix_init_user(void) {
-
};
-
-void led_set_user(uint8_t usb_led) {
- if (usb_led & (1<<USB_LED_NUM_LOCK)) {
- PORTF |= (1<<2);
- } else {
- PORTF &= ~(1<<2);
- }
- if (usb_led & (1<<USB_LED_CAPS_LOCK)) {
- PORTF |= (1<<3);
- } else {
- PORTF &= ~(1<<3);
- }
- if (usb_led & (1<<USB_LED_SCROLL_LOCK)) {
- PORTF |= (1<<1);
- } else {
- PORTF &= ~(1<<1);
- }
-}
diff --git a/keyboards/kinesis/keymaps/xyverz/readme.md b/keyboards/kinesis/keymaps/xyverz/readme.md
index 12320996e..4f270445d 100644
--- a/keyboards/kinesis/keymaps/xyverz/readme.md
+++ b/keyboards/kinesis/keymaps/xyverz/readme.md
@@ -10,9 +10,11 @@ The QWERTY layout shown here is based entirely on the Kinesis Advantage layout.
I've enabled persistent keymaps for Qwerty, Dvorak and Colemak layers, similar to the default Planck layouts.
+As of August 4 2018, I've got the LEDs working ... mostly. Caps Lock and Num Lock LEDs work for me. The Scroll Lock LED does work on my keyboard, but I can't get it to work when I use the Scroll Lock key on my keyboard. I also have no idea how to get the Num Pad LED working when I switch to the Numpad layer.
+
## Still to do:
- * Implement the CapsLock, NumLock, and ScrLck LEDs on the off-chance that I decide to actually solder some to the keyboard.
+ * Figure out how to make the Numpad and ScrLck LEDs work properly.
### Function Keys on All Layers (keypad toggles):
,-----------------------------------------------------------------.