[Keyboard] Twig50 (#18085)

Co-authored-by: Ryan <fauxpark@gmail.com>
This commit is contained in:
nodatk 2022-10-05 10:40:18 +09:00 committed by GitHub
parent fe7ac87f18
commit 3f63bbc7d8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 199 additions and 0 deletions

View file

@ -0,0 +1,28 @@
// Copyright 2022 Takeshi Noda (nodatk@gmail.com)
// SPDX-License-Identifier: GPL-2.0-or-later
#pragma once
#include "config_common.h"
/* key matrix size */
#define MATRIX_ROWS 4
#define MATRIX_COLS 14
#define MATRIX_ROW_PINS { B7, B6, B5, B4 }
#define MATRIX_COL_PINS { A2, A1, A0, B8 , B13, B14, B15, B9, B10, B11, B3, B2, B1, B0}
#define DIODE_DIRECTION COL2ROW
#define DEBOUNCE 8
#define TAPPING_TERM 150
#define FORCE_NKRO
#ifdef AUDIO_ENABLE
#define AUDIO_PIN A5
#define AUDIO_PIN_ALT A4
#define AUDIO_PIN_ALT_AS_NEGATIVE
#define STARTUP_SONG SONG(STARTUP_SOUND)
#define AUDIO_INIT_DELAY
#endif