aboutsummaryrefslogtreecommitdiff
path: root/keyboards/marksard/leftover30/leftover30.c
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/marksard/leftover30/leftover30.c')
-rw-r--r--keyboards/marksard/leftover30/leftover30.c37
1 files changed, 37 insertions, 0 deletions
diff --git a/keyboards/marksard/leftover30/leftover30.c b/keyboards/marksard/leftover30/leftover30.c
new file mode 100644
index 000000000..df8152144
--- /dev/null
+++ b/keyboards/marksard/leftover30/leftover30.c
@@ -0,0 +1,37 @@
1/* Copyright 2020 marksard
2 *
3 * This program is free software: you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation, either version 2 of the License, or
6 * (at your option) any later version.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
15 */
16
17#include "leftover30.h"
18
19// Optional override functions below.
20// You can leave any or all of these undefined.
21// These are only required if you want to perform custom actions.
22
23void keyboard_pre_init_user(void) {
24 /* Set CAPSLOCK indicator pin as output */
25 setPinOutput(D1);
26 /* Set NUMLOCK indicator pin as output */
27 setPinOutput(D2);
28}
29
30bool led_update_kb(led_t led_state) {
31 bool res = led_update_user(led_state);
32 if(res) {
33 writePin(D2, led_state.num_lock);
34 writePin(D1, led_state.caps_lock);
35 }
36 return res;
37}