diff options
Diffstat (limited to 'keyboards/wilba_tech/wt69_a')
-rw-r--r-- | keyboards/wilba_tech/wt69_a/wt69_a.c | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/keyboards/wilba_tech/wt69_a/wt69_a.c b/keyboards/wilba_tech/wt69_a/wt69_a.c index ccff6d62c9..4397a97d1a 100644 --- a/keyboards/wilba_tech/wt69_a/wt69_a.c +++ b/keyboards/wilba_tech/wt69_a/wt69_a.c @@ -14,4 +14,17 @@ * along with this program. If not, see <http://www.gnu.org/licenses/>. */ -// Nothing to see here, move along... ;-) +#include "wt69_a.h" + +void keyboard_pre_init_kb(void) { + setPinOutput(F1); + + keyboard_pre_init_user(); +} + +bool led_update_kb(led_t led_state) { + if (led_update_user(led_state)) { + writePin(F1, led_state.caps_lock); + } + return true; +} |