aboutsummaryrefslogtreecommitdiff
path: root/keyboards/z150_bh
diff options
context:
space:
mode:
authorJoel Challis <git@zvecr.com>2020-11-17 17:06:30 +0000
committerGitHub <noreply@github.com>2020-11-17 17:06:30 +0000
commitddcb1794fa83e62e5e48536f4bc02ada63da411a (patch)
treedb5df8970f8ed22c77bdd021b781a429a5f05b49 /keyboards/z150_bh
parentadfd34c4512f6215a49a8f705ce408d6c82fb8cc (diff)
downloadqmk_firmware-ddcb1794fa83e62e5e48536f4bc02ada63da411a.tar.gz
qmk_firmware-ddcb1794fa83e62e5e48536f4bc02ada63da411a.zip
Refactor to use led config - Part 1 (#10905)
* Refactor to use led config * Refactor to use led config * Refactor to use led config * Refactor to use led config * Refactor to use led config
Diffstat (limited to 'keyboards/z150_bh')
-rw-r--r--keyboards/z150_bh/config.h4
-rw-r--r--keyboards/z150_bh/z150_bh.c31
2 files changed, 4 insertions, 31 deletions
diff --git a/keyboards/z150_bh/config.h b/keyboards/z150_bh/config.h
index fc33021ff..9fa1f0c52 100644
--- a/keyboards/z150_bh/config.h
+++ b/keyboards/z150_bh/config.h
@@ -22,6 +22,10 @@
22/* COL2ROW or ROW2COL */ 22/* COL2ROW or ROW2COL */
23#define DIODE_DIRECTION COL2ROW 23#define DIODE_DIRECTION COL2ROW
24 24
25#define LED_NUM_LOCK_PIN E7
26#define LED_CAPS_LOCK_PIN B0
27#define LED_SCROLL_LOCK_PIN E6
28
25/* Set 0 if debouncing isn't needed */ 29/* Set 0 if debouncing isn't needed */
26#define DEBOUNCE 5 30#define DEBOUNCE 5
27 31
diff --git a/keyboards/z150_bh/z150_bh.c b/keyboards/z150_bh/z150_bh.c
index 6db784b56..b75a1ff19 100644
--- a/keyboards/z150_bh/z150_bh.c
+++ b/keyboards/z150_bh/z150_bh.c
@@ -1,32 +1 @@
1#include "z150_bh.h" #include "z150_bh.h"
2
3void matrix_init_kb(void) {
4 setPinOutput(B0);
5 setPinOutput(E6);
6 setPinOutput(E7);
7
8 matrix_init_user();
9};
10
11void led_set_kb(uint8_t usb_led) {
12 // put your keyboard LED indicator (ex: Caps Lock LED) toggling code here
13 if (IS_LED_ON(usb_led, USB_LED_NUM_LOCK)) {
14 writePinHigh(E7);
15 } else {
16 writePinLow(E7);
17 }
18
19 if (IS_LED_ON(usb_led, USB_LED_CAPS_LOCK)) {
20 writePinHigh(B0);
21 } else {
22 writePinLow(B0);
23 }
24
25 if (IS_LED_ON(usb_led, USB_LED_SCROLL_LOCK)) {
26 writePinHigh(E6);
27 } else {
28 writePinLow(E6);
29 }
30
31 led_set_user(usb_led);
32}