diff options
author | Evelien-Lillian Dekkers <sixmoonskies@gmail.com> | 2021-08-13 21:53:02 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-13 12:53:02 -0700 |
commit | af98005b0252cea38cccd28d7aa72109f3a28f52 (patch) | |
tree | f80b213ea8e205c6daefefac97935316d6a095cf /keyboards/evyd13/gud70/gud70.c | |
parent | 9b922d55dda081107db4cf9f50b24287c4952e04 (diff) | |
download | qmk_firmware-af98005b0252cea38cccd28d7aa72109f3a28f52.tar.gz qmk_firmware-af98005b0252cea38cccd28d7aa72109f3a28f52.zip |
[Keyboard] Add Gud70 (#12575)
Co-authored-by: Drashna Jaelre <drashna@live.com>
Diffstat (limited to 'keyboards/evyd13/gud70/gud70.c')
-rw-r--r-- | keyboards/evyd13/gud70/gud70.c | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/keyboards/evyd13/gud70/gud70.c b/keyboards/evyd13/gud70/gud70.c new file mode 100644 index 0000000000..7b8c0a98f9 --- /dev/null +++ b/keyboards/evyd13/gud70/gud70.c @@ -0,0 +1,22 @@ +/* Copyright 2020 Evelien Dekkers + * + * 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 "gud70.h" + +void keyboard_pre_init_kb(void) { + // Enable top LED + setPinOutput(B3); + writePinLow(B3); +} |