summaryrefslogtreecommitdiff
path: root/keyboards/kinesis/kintwin/kintwin.c
blob: 0e2e7a57928305f69d20c16105213f2836fafe81 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
// 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();
}