From 93c5307fd60c35780921570ccf41a1806847eb9c Mon Sep 17 00:00:00 2001 From: Ramon Imbao Date: Tue, 25 Feb 2020 09:36:30 +0800 Subject: [Keyboard] Add Wete (#8229) * [Keyboard] Add Wete * Fix width and height in Wete info.json * Use default board files, core backlight, and disable RTC * Disable I2C, SPI. Minor corrections * Keymap typo update * Add LAYOUT_all to info.json * Remove extra spaces in README, delete matrix_*_kb functions * Fix layout errors in wete.h, and some minor corrections * Actually fix LAYOUT_all in info.json --- keyboards/wete/wete.c | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 keyboards/wete/wete.c (limited to 'keyboards/wete/wete.c') diff --git a/keyboards/wete/wete.c b/keyboards/wete/wete.c new file mode 100644 index 0000000000..181183c704 --- /dev/null +++ b/keyboards/wete/wete.c @@ -0,0 +1,19 @@ +#include "wete.h" + +void keyboard_pre_init_user(void) { + // Initialize indicator LED pins + setPinOutput(A14); // Num Lock + setPinOutput(A15); // Scroll Lock + setPinOutput(B3); // Caps Lock +} + +bool led_update_kb(led_t led_state) { + bool res = led_update_user(led_state); + if (res) { + writePin(A14, !led_state.num_lock); + writePin(A15, !led_state.scroll_lock); + writePin(B3, !led_state.caps_lock); + } + + return res; +} -- cgit v1.2.3