diff options
author | MechMerlin <30334081+mechmerlin@users.noreply.github.com> | 2018-08-06 08:20:19 -0700 |
---|---|---|
committer | Drashna Jaelre <drashna@live.com> | 2018-08-06 08:20:19 -0700 |
commit | 0c4e0a20974c891b674899d7025a0bc1026a585c (patch) | |
tree | 7560e5901a3543c271733486d47f2ba0c810ebd2 /keyboards/kbd6x/kbd6x.c | |
parent | f6ec2ce2015203f99622b405f88e0b82ec080b65 (diff) | |
download | qmk_firmware-0c4e0a20974c891b674899d7025a0bc1026a585c.tar.gz |
Keyboard: KBD6x Support (#3560)
* initial commit
* get the matrix correct
* make my name be known
* add rgblight enable
* add a default keymap
* Add QMK Configurator support for the base layout
* add name here too
* fix up readme
* remove set user from keymap
* use led_set_kb as per drashna's comments on PR
Diffstat (limited to 'keyboards/kbd6x/kbd6x.c')
-rw-r--r-- | keyboards/kbd6x/kbd6x.c | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/keyboards/kbd6x/kbd6x.c b/keyboards/kbd6x/kbd6x.c new file mode 100644 index 000000000..f558af030 --- /dev/null +++ b/keyboards/kbd6x/kbd6x.c @@ -0,0 +1,49 @@ +/* Copyright 2018 MechMerlin + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ +#include "kbd6x.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) { + if (usb_led & (1 << USB_LED_CAPS_LOCK)) { + DDRB |= (1 << 6); + PORTB &= ~(1 << 6); + } else { + DDRB &= ~(1 << 6); + PORTB &= ~(1 << 6); + } + + led_set_user(usb_led); +}
\ No newline at end of file |