mirror of
https://github.com/openstenoproject/qmk
synced 2024-11-10 18:49:08 +00:00
config edit for caps indicator (#3016)
* Capslock indicator add * edit * name correction * led_set_user(usb_led); delete * config edit for caps indicator * keymap.c fix * led.h include
This commit is contained in:
parent
575b2a66df
commit
2ec0e01430
1 changed files with 27 additions and 6 deletions
|
@ -1,11 +1,32 @@
|
|||
#include "pk60.h"
|
||||
#include "led.h"
|
||||
|
||||
void matrix_init_kb (void) {
|
||||
|
||||
matrix_init_user();
|
||||
led_init_ports();
|
||||
|
||||
}
|
||||
|
||||
void matrix_scan_kb(void) {
|
||||
|
||||
matrix_scan_user();
|
||||
|
||||
};
|
||||
|
||||
void led_init_ports(void) {
|
||||
|
||||
DDRF |= (1 << 4);
|
||||
PORTF |= (1 << 4);
|
||||
|
||||
}
|
||||
|
||||
void led_set_kb(uint8_t usb_led) {
|
||||
|
||||
if (usb_led & (1<<USB_LED_CAPS_LOCK)) {
|
||||
PORTF |= (1<<4);
|
||||
PORTF |= (1 << 4);
|
||||
} else {
|
||||
PORTF &= ~(1<<4);
|
||||
PORTF &= ~(1 << 4);
|
||||
}
|
||||
led_set_user(usb_led);
|
||||
|
||||
|
|
Loading…
Reference in a new issue