diff options
author | Josh Hinnebusch <joshhinnebusch@gmail.com> | 2020-06-22 15:25:56 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-22 12:25:56 -0700 |
commit | 24b0cda3e877c28c53c1aca02ef6e0eaa66fad91 (patch) | |
tree | aa73257cbe219bd9bae71e1fb03487116798c158 /keyboards/hineybush/h60/h60.c | |
parent | 1ab8f969f6a8a804241a64a8df40c49daab409a7 (diff) | |
download | qmk_firmware-24b0cda3e877c28c53c1aca02ef6e0eaa66fad91.tar.gz qmk_firmware-24b0cda3e877c28c53c1aca02ef6e0eaa66fad91.zip |
[Keyboard] add h60 PCB (#9242)
* add h60 initial files
* add h60 image
* updated per PR request
* Update keyboards/hineybush/h60/keymaps/default/keymap.c
* Update keyboards/hineybush/h60/keymaps/kei/keymap.c
* Update keyboards/hineybush/h60/keymaps/via/keymap.c
* Update keyboards/hineybush/h60/h60.h
* Update keyboards/hineybush/h60/h60.h
* Update keyboards/hineybush/h60/rules.mk
Diffstat (limited to 'keyboards/hineybush/h60/h60.c')
-rw-r--r-- | keyboards/hineybush/h60/h60.c | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/keyboards/hineybush/h60/h60.c b/keyboards/hineybush/h60/h60.c new file mode 100644 index 0000000000..c3f1382479 --- /dev/null +++ b/keyboards/hineybush/h60/h60.c @@ -0,0 +1,31 @@ +/* Copyright 2020 hineybush + * + * 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 "h60.h" + +void matrix_init_kb(void) { + // put your keyboard start-up code here + // runs once when the firmware starts up + setPinOutput(C6); +} + +bool led_update_kb(led_t led_state) { + if(led_update_user(led_state)) { + writePin(C6, !led_state.caps_lock); + } + return true; +} + |