[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
This commit is contained in:
Josh Hinnebusch
2020-06-22 15:25:56 -04:00
committed by GitHub
parent 1ab8f969f6
commit 24b0cda3e8
12 changed files with 369 additions and 0 deletions

View File

@@ -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;
}