forked from mirrors/qmk_firmware
6f3beae895
Co-authored-by: Ryan <fauxpark@gmail.com>
29 lines
No EOL
637 B
C
29 lines
No EOL
637 B
C
// Copyright 2023 Alex Stepanov (@alvicstep)
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#include "quantum.h"
|
|
|
|
void matrix_init_kb(void) {
|
|
|
|
uint8_t led_delay_ms = 80;
|
|
|
|
/* LED pins setup */
|
|
setPinOutput(LED_CAPS_LOCK_PIN);
|
|
writePinLow(LED_CAPS_LOCK_PIN);
|
|
|
|
wait_ms(led_delay_ms);
|
|
setPinOutput(LED_NUM_LOCK_PIN);
|
|
writePinLow(LED_NUM_LOCK_PIN);
|
|
wait_ms(led_delay_ms);
|
|
|
|
setPinOutput(LED_SCROLL_LOCK_PIN);
|
|
writePinLow(LED_SCROLL_LOCK_PIN);
|
|
wait_ms(led_delay_ms);
|
|
|
|
setPinOutput(LED_COMPOSE_PIN);
|
|
writePinLow(LED_COMPOSE_PIN);
|
|
wait_ms(led_delay_ms);
|
|
writePinHigh(LED_COMPOSE_PIN);
|
|
|
|
matrix_init_user();
|
|
} |