1
0
Fork 0

[Keyboard] Add ReverseStudio-DecadePad (#8553)

* ADD DecadePad

* Fix Key display bug

* fix

* firmware1

THIS IS A Backup commit

* firmware2

* rename all fill with lower case

* fix bug

* Final Version

Fix all bugs

* Requested change apply

* suggested apply

* change apply

* via test

* Apply change and fix via support problem
This commit is contained in:
huajijam 2020-04-05 13:28:40 +08:00 committed by GitHub
parent 120fcc58b6
commit 04c81a04c7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
9 changed files with 247 additions and 0 deletions

View file

@ -0,0 +1,7 @@
#include "decadepad.h"
bool led_update_kb(led_t led_state) {
if (led_update_user(led_state)){
writePin(D4, led_state.num_lock);
}
return true;
}