diff options
author | yiancar <yiangosyiangou@cytanet.com.cy> | 2021-02-16 03:36:58 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-15 20:36:58 -0500 |
commit | 3fed8bced718e24e414c0d5736554d7988235b20 (patch) | |
tree | 51de9da8f0e01109d9e434fae315a94d6930c142 /keyboards/dc01/left/left.c | |
parent | fa740f81298dc0965970a4dc7b0b67285bd1985c (diff) |
Dc01 fixes (#11843)
* dc01-fixes
* dc01-fixes
* Cleanup and add VIA
* Updated JSONs
* fix
Diffstat (limited to 'keyboards/dc01/left/left.c')
-rw-r--r-- | keyboards/dc01/left/left.c | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/keyboards/dc01/left/left.c b/keyboards/dc01/left/left.c index 1d8da186bd..b10121705d 100644 --- a/keyboards/dc01/left/left.c +++ b/keyboards/dc01/left/left.c @@ -14,30 +14,3 @@ * along with this program. If not, see <http://www.gnu.org/licenses/>. */ #include "left.h" - -void matrix_init_kb(void) { - // put your keyboard start-up code here - // runs once when the firmware starts up - - matrix_init_user(); -} - -void matrix_scan_kb(void) { - // put your looping keyboard code here - // runs every cycle (a lot) - - matrix_scan_user(); -} - -bool process_record_kb(uint16_t keycode, keyrecord_t *record) { - // put your per-action keyboard code here - // runs for every action, just before processing by the firmware - - return process_record_user(keycode, record); -} - -void led_set_kb(uint8_t usb_led) { - // put your keyboard LED indicator (ex: Caps Lock LED) toggling code here - - led_set_user(usb_led); -} |