diff options
author | QMK Bot <hello@qmk.fm> | 2022-07-11 19:47:42 +0000 |
---|---|---|
committer | QMK Bot <hello@qmk.fm> | 2022-07-11 19:47:42 +0000 |
commit | 52e9ed75e8e5a51b46ffd9e886966ec72325b132 (patch) | |
tree | 854bddaa115333adf4bc5bc63fa77930a607c459 /keyboards/kinesis/kintlc/kintlc.c | |
parent | 51b78285403ca804920904ae4fa1b8d0fabe54d8 (diff) | |
parent | 2bb05507076c8bdb64a8cffd0895795d392e4b82 (diff) |
Merge remote-tracking branch 'origin/master' into develop
Diffstat (limited to 'keyboards/kinesis/kintlc/kintlc.c')
-rw-r--r-- | keyboards/kinesis/kintlc/kintlc.c | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/keyboards/kinesis/kintlc/kintlc.c b/keyboards/kinesis/kintlc/kintlc.c new file mode 100644 index 0000000000..19b723600a --- /dev/null +++ b/keyboards/kinesis/kintlc/kintlc.c @@ -0,0 +1,27 @@ +/* Copyright 2020 QMK + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + +#include "kintlc.h" + +#define LED_POWER LINE_PIN13 + +void matrix_init_kb(void) { + matrix_init_user(); + + // Turn on the Teensy LC Power LED: + setPinOutput(LED_POWER); + writePinHigh(LED_POWER); +} |