diff options
author | mechlovin <57231893+mechlovin@users.noreply.github.com> | 2020-06-02 07:31:14 +0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-01 17:31:14 -0700 |
commit | 306d02aa9328630ca97a8b8863286986dba85603 (patch) | |
tree | 72f32054fec9eb03c96dc2557fde830748c01cd1 /keyboards/mechlovin/adelais/adelais.c | |
parent | b8ddfd34ec2fbefefe54346056f56706a35a7a6d (diff) |
Adelais: Fix indicator LED pinout (#9241)
* Fix indicator LED pinout
Fix indicator LED pinout, active some function
Diffstat (limited to 'keyboards/mechlovin/adelais/adelais.c')
-rw-r--r-- | keyboards/mechlovin/adelais/adelais.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/keyboards/mechlovin/adelais/adelais.c b/keyboards/mechlovin/adelais/adelais.c index c4676007ef..87f0caf091 100644 --- a/keyboards/mechlovin/adelais/adelais.c +++ b/keyboards/mechlovin/adelais/adelais.c @@ -62,7 +62,7 @@ bool led_update_kb(led_t led_state) { if(led_update_user(led_state)) { writePin(B2, led_state.caps_lock); writePin(B9, led_state.scroll_lock); - writePin(C12, led_state.num_lock); + writePin(C15, led_state.num_lock); } return true; |