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/facew | |
| 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/facew')
| -rw-r--r-- | keyboards/facew/config.h | 3 | ||||
| -rw-r--r-- | keyboards/facew/facew.c | 18 |
2 files changed, 3 insertions, 18 deletions
diff --git a/keyboards/facew/config.h b/keyboards/facew/config.h index 5966429ca..14583dc83 100644 --- a/keyboards/facew/config.h +++ b/keyboards/facew/config.h | |||
| @@ -37,6 +37,9 @@ 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_NUM_LOCK_PIN D0 | ||
| 41 | #define LED_CAPS_LOCK_PIN D1 | ||
| 42 | |||
| 40 | #define BACKLIGHT_PIN D4 | 43 | #define BACKLIGHT_PIN D4 |
| 41 | #define BACKLIGHT_LEVELS 3 | 44 | #define BACKLIGHT_LEVELS 3 |
| 42 | 45 | ||
diff --git a/keyboards/facew/facew.c b/keyboards/facew/facew.c index 2f091ae6b..373dbc6cd 100644 --- a/keyboards/facew/facew.c +++ b/keyboards/facew/facew.c | |||
| @@ -16,21 +16,3 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
| 16 | */ | 16 | */ |
| 17 | 17 | ||
| 18 | #include "facew.h" | 18 | #include "facew.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(D0); | ||
| 27 | setPinOutput(D1); | ||
| 28 | } | ||
| 29 | |||
| 30 | bool led_update_kb(led_t led_state) { | ||
| 31 | if (led_update_user(led_state)) { | ||
| 32 | writePin(D0, led_state.num_lock); | ||
| 33 | writePin(D1, led_state.caps_lock); | ||
| 34 | } | ||
| 35 | return true; | ||
| 36 | } | ||
