-
-
Notifications
You must be signed in to change notification settings - Fork 40.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add Matrimony Keyboard #19383
Closed
Closed
Add Matrimony Keyboard #19383
Changes from all commits
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
6b48ec0
adding matrimony keyboard
hypanim 9f778d7
fixing license issues
hypanim e3f1f7e
Update keyboards/matrimony/keymaps/default/keymap.c
hypanim 563789f
Update keyboards/matrimony/keymaps/default/keymap.c
hypanim 5e8d255
Update keyboards/matrimony/keymaps/left_only/keymap.c
hypanim 3261871
Update keyboards/matrimony/keymaps/left_only/keymap.c
hypanim 8b512c8
Merge pull request #1 from qmk/master
hypanim f31d090
waffle87 changes
hypanim 50935a0
Merge branch 'master' of https://github.com/hypanim/qmk_firmware
hypanim 63428c2
Update keyboards/matrimony/readme.md
hypanim c5e6498
Update keyboards/matrimony/rules.mk
hypanim 40dde5e
Update keyboards/matrimony/rules.mk
hypanim 7b8247f
Update keyboards/matrimony/rules.mk
hypanim File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
@@ -0,0 +1,45 @@ | ||||||
/* Copyright 2021 Joshua Cheung and Nathan Nguyen | ||||||
|
||||||
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/>. | ||||||
*/ | ||||||
|
||||||
#pragma once | ||||||
|
||||||
//Pins for boot magic lite | ||||||
#define BOOTMAGIC_LITE_ROW 0 | ||||||
#define BOOTMAGIC_LITE_COLUMN 4 | ||||||
#define BOOTMAGIC_LITE_ROW_RIGHT 5 | ||||||
#define BOOTMAGIC_LITE_COLUMN_RIGHT 8 | ||||||
|
||||||
/* key matrix size */ | ||||||
// Rows are doubled-up | ||||||
#define MATRIX_ROWS 10 | ||||||
#define MATRIX_COLS 13 | ||||||
|
||||||
|
||||||
// Defines the diode direction, can be changed to ROW2COL if diodes are soldered backwards. | ||||||
#define DIODE_DIRECTION COL2ROW | ||||||
|
||||||
#define MATRIX_ROW_PINS { D4, C6, D7, E6, B4 } | ||||||
// B7 and B5 are dummy pins to ensure both columns == 13 | ||||||
#define MATRIX_COL_PINS { D2, D3, B5, B6, F4, F5, F6, F7, B1, B3, B2, B7, D5 } | ||||||
#define MATRIX_ROW_PINS_RIGHT { F0, F1, C7, D5, B7 } | ||||||
#define MATRIX_COL_PINS_RIGHT { B6, B2, B3, B1, F7, F6, F5, F4, B0, B5, B4, E6, D7 } | ||||||
|
||||||
// Set 0 if debouncing isn't needed | ||||||
#define DEBOUNCE 5 | ||||||
Comment on lines
+40
to
+41
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
#define USE_I2C | ||||||
|
||||||
// sets the handness according to eeprom | ||||||
#define EE_HANDS |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These lines are required for my keyboard to work I think, I tried flashing without, and it doesn't work.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
See #19581