diff options
author | Joel Challis <git@zvecr.com> | 2021-03-10 22:48:18 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-10 22:48:18 +0000 |
commit | 790f94533c936409e6be56e8b638969b42350180 (patch) | |
tree | 9da39389c6565e8755a9075be6c4fee95e6028af /keyboards/bfake | |
parent | 9089244db77d724f23ddfc01be370f9c029c8e6c (diff) | |
download | qmk_firmware-790f94533c936409e6be56e8b638969b42350180.tar.gz qmk_firmware-790f94533c936409e6be56e8b638969b42350180.zip |
Refactor to use led config - Part 6 (#12115)
* Convert to config
* Convert to config
* Convert to config
* Convert to config
* Convert to config
* Convert to config
* Convert to config
* Convert to config
* revert changes
Diffstat (limited to 'keyboards/bfake')
-rw-r--r-- | keyboards/bfake/bfake.c | 16 | ||||
-rw-r--r-- | keyboards/bfake/config.h | 2 |
2 files changed, 2 insertions, 16 deletions
diff --git a/keyboards/bfake/bfake.c b/keyboards/bfake/bfake.c index 6d0c92746..5eedcc194 100644 --- a/keyboards/bfake/bfake.c +++ b/keyboards/bfake/bfake.c | |||
@@ -16,19 +16,3 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
16 | */ | 16 | */ |
17 | 17 | ||
18 | #include "bfake.h" | 18 | #include "bfake.h" |
19 | |||
20 | void keyboard_pre_init_kb(void) { | ||
21 | led_init_ports(); | ||
22 | keyboard_pre_init_user(); | ||
23 | } | ||
24 | |||
25 | void led_init_ports(void) { | ||
26 | setPinOutput(D1); | ||
27 | } | ||
28 | |||
29 | bool led_update_kb(led_t led_state) { | ||
30 | if (led_update_user(led_state)) { | ||
31 | writePin(D1, led_state.caps_lock); | ||
32 | } | ||
33 | return true; | ||
34 | } | ||
diff --git a/keyboards/bfake/config.h b/keyboards/bfake/config.h index 6c4710a9e..54e01ad3d 100644 --- a/keyboards/bfake/config.h +++ b/keyboards/bfake/config.h | |||
@@ -37,6 +37,8 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
37 | #define DIODE_DIRECTION COL2ROW | 37 | #define DIODE_DIRECTION COL2ROW |
38 | #define DEBOUNCE 5 | 38 | #define DEBOUNCE 5 |
39 | 39 | ||
40 | #define LED_CAPS_LOCK_PIN D1 | ||
41 | |||
40 | #define BACKLIGHT_PIN D4 | 42 | #define BACKLIGHT_PIN D4 |
41 | #define BACKLIGHT_LEVELS 3 | 43 | #define BACKLIGHT_LEVELS 3 |
42 | 44 | ||