~ruther/qmk_firmware

ref: 0032f293f1283cea497bf3e22d9909f23044a414 qmk_firmware/keyboards/exclusive/e6v2/oe/oe.c -rw-r--r-- 328 bytes
0032f293 — Rutherther Move to 36 key layout possibility, custom shift keys 5 months ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include "quantum.h"

void led_init_ports(void) {
    gpio_set_pin_output(B2);
    gpio_set_pin_output(B6);
}

bool led_update_kb(led_t led_state) {
    bool res = led_update_user(led_state);
    if(res) {
        gpio_write_pin(B2, !led_state.caps_lock);
        gpio_write_pin(B6, led_state.raw == 0);
    }
    return res;
}