forked from qmk/qmk_firmware
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'upstream/master' into sjb/all-keyboard
* upstream/master: (81 commits) [Keyboard] Add avalanche (qmk#16407) [Keyboard] Add via support for creatkeebs/glacier (qmk#16747) [Keyboard] move/rename obro to Meridian RGB (qmk#16828) Ignore VIA(L) json files (qmk#16845) Fix external flash on AVR (qmk#16851) [Keyboard] Fix kay65 - Missing keycode (qmk#16849) [Keyboard] Fix waffling80 - Missing comma (qmk#16848) [Keyboard] The inaugural commit for Leeloo's firmware. (qmk#16599) [Keymap] bépo layout on Lily58L (qmk#16243) [Keyboard] Add RM_Numpad (qmk#15983) [Keymap] Add thattolleyguy keymaps (qmk#15351) [Keyboard] Add Frooastboard Walnut (69% Keyboard) (qmk#16743) [Keyboard] add tiger80 keyboard (qmk#16742) [Keyboard] annepro2: match default keymap to stock keycaps (qmk#16724) [Keyboard] Add banime40 keyboard (qmk#16694) [Keyboard] correct matrix for Kay65 (qmk#16751) [Keymap] Fix snowe keymap after updates to QMK (qmk#16777) [Keyboard] KBD67 rev1 Caps Lock LED Fix (qmk#16790) [Keyboard] Ported ErgoDox to VIA (qmk#16804) [Keyboard] Waffling60 - minor tweak, improve default behavior of caps lock indicator. (qmk#16836) ...
- Loading branch information
Showing
436 changed files
with
17,413 additions
and
1,181 deletions.
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,18 @@ | ||
name: Automatic Approve | ||
|
||
on: | ||
schedule: | ||
- cron: "*/5 * * * *" | ||
|
||
jobs: | ||
automatic_approve: | ||
runs-on: ubuntu-latest | ||
|
||
if: github.repository == 'qmk/qmk_firmware' | ||
|
||
steps: | ||
- uses: mheap/automatic-approve-action@v1 | ||
with: | ||
token: ${{ secrets.QMK_BOT_TOKEN }} | ||
workflows: "format.yml,lint.yml,unit_test.yml" | ||
dangerous_files: "lib/python/,Makefile,paths.mk,builddefs/" |
File renamed without changes.
File renamed without changes.
File renamed without changes.
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
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
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
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
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
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
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
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
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
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,50 @@ | ||
/* Copyright 2022 MechMerlin | ||
* | ||
* 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 QMK_KEYBOARD_H | ||
|
||
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
[0] = LAYOUT_ortho_4x4( /* Base */ | ||
KC_TRNS, KC_DELETE, KC_BACKSPACE, KC_MUTE, | ||
KC_P4, KC_P5, KC_P6, KC_PPLS, | ||
KC_P1, KC_P2, KC_P3, KC_PSLS, | ||
MO(1), KC_P0, KC_PDOT, KC_BTN3 | ||
), | ||
|
||
[1] = LAYOUT_ortho_4x4( /* Fn Layer */ | ||
RGB_TOG, RGB_HUI, RGB_SAI, RGB_VAI, | ||
RGB_MOD, RGB_HUD, RGB_SAD, RGB_VAD, | ||
RGB_SPD, RGB_SPI, KC_TRNS, KC_TRNS, | ||
KC_TRNS, KC_TRNS, KC_TRNS, RESET | ||
), | ||
}; | ||
|
||
bool encoder_update_user(uint8_t index, bool clockwise) { | ||
if (index == 0) { /* First encoder */ | ||
if (clockwise) { | ||
tap_code_delay(KC_MS_RIGHT, 10); | ||
} else { | ||
tap_code_delay(KC_MS_LEFT, 10); | ||
} | ||
} else if (index == 1) { /* Second encoder */ | ||
if (clockwise) { | ||
tap_code_delay(KC_AUDIO_VOL_UP, 10); | ||
} else { | ||
tap_code_delay(KC_AUDIO_VOL_DOWN, 10); | ||
} | ||
} | ||
return false; | ||
} |
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 @@ | ||
# The default keymap for Super 16 V2 |
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
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
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
Oops, something went wrong.