mirror of
https://github.com/qmk/qmk_firmware.git
synced 2024-11-25 20:56:42 +00:00
have led default to off on start up
This commit is contained in:
parent
b546da0a19
commit
29d1abff07
@ -16,7 +16,9 @@ void matrix_scan_kb(void) {
|
|||||||
|
|
||||||
void led_init_ports(void) {
|
void led_init_ports(void) {
|
||||||
// Set caps lock LED pin as output
|
// Set caps lock LED pin as output
|
||||||
DDRB |= (1<<2);
|
DDRB |= (1 << 2);
|
||||||
|
// Default to off
|
||||||
|
PORTB |= (1 << 2);
|
||||||
}
|
}
|
||||||
|
|
||||||
void led_set_kb(uint8_t usb_led) {
|
void led_set_kb(uint8_t usb_led) {
|
||||||
|
Loading…
Reference in New Issue
Block a user