summaryrefslogtreecommitdiff
path: root/keyboards
AgeCommit message (Collapse)AuthorFilesLines
2026-05-14Merge crkbd keymap from qmk_firmware_mineHEADmasterVineet Kumar2-0/+143
2026-05-14keyboards/ploopyco/madromys: fix scrolling directionVineet Kumar1-0/+3
2026-03-26keyboards/ferris: add current keymapVineet Kumar3-0/+127
2026-03-26keyboards/ploopyco/madromys: add left-handed keymapVineet Kumar1-0/+59
2026-03-26keyboards/ploopyco: fix compiler errors about typedefsVineet Kumar2-0/+6
2026-01-25Fixup tominabox1 le chiffre default keymap (#25966)Drashna Jaelre4-175/+36
* Fixup tominabox1 le chiffre default keymap * Apply suggestions from code review Co-authored-by: Jack Sangdahl <jack@pngu.org> --------- Co-authored-by: Jack Sangdahl <jack@pngu.org>
2026-01-11Remove binary symbols from keymaps (#25947)Joel Challis2-4/+4
2026-01-11First support for KKC Wily (#25852)Álvaro A. Volpato11-0/+491
2026-01-10Update tyson60 pid (#25935)Thanh Son Tran1-1/+1
* Update support S6xty5 * Delete chconf.h * Update manufacturer, community layout for hhkb * Update layout * fix row index * Update tyson60s * Update community layout and layout name * Update remove rgb test mode * Update capslock led * Apply suggestions from code review Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com> * Remove deprecated s6xty5 * Update tyson60 product id --------- Co-authored-by: Trần Thanh Sơn <son.tt1@teko.vn> Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>
2026-01-07Update fatotesa keyboard config. (#25811)Stefan Gluszek2-18/+20
2026-01-03Fix typos in Aleblazer Zodiark readme (#25925)Aymeric Wibo1-1/+1
2025-12-23Add FoldKB Rev. 2.1 with added underglow RGB LEDs (#25885)Danny6-0/+370
2025-12-08Add support for Kami65 PCB (#24604)Sắn3-0/+412
Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com> Co-authored-by: Drashna Jaelre <drashna@live.com> Co-authored-by: Joel Challis <git@zvecr.com>
2025-12-08Update dactyl_manuform 5x8 keyboard.json (#24778)Philip1-38/+43
2025-12-08Add queue.len() keyboard (#24823)lental3-0/+256
Co-authored-by: Joel Challis <git@zvecr.com>
2025-12-08Add new mouse "Ploopy Nano 2 Trackball" (#25762)ploopyco7-0/+130
2025-12-08[Keyboard] Add PicoFX (#25704)Jon Colverson8-0/+269
2025-12-08[Keyboard] Add support for Alpha FS (#25756)Fabian Felix Selbach3-0/+312
2025-12-04Add kt356 Mini (#25781)Ivan Gromov3-0/+350
Co-authored-by: Joel Challis <git@zvecr.com>
2025-12-04Add kt60HS-T v3 (#25822)Ivan Gromov4-7/+318
2025-12-04Adapt MIUNI32 keyboard for VIA configurator (#25803)sigman2-4/+19
2025-11-27Merge remote-tracking branch 'origin/master' into developQMK Bot1-2/+2
2025-11-28QMK CLI Environment bootstrapper (#25038)Nick Brassel1-2/+2
Co-authored-by: Joel Challis <git@zvecr.com> Co-authored-by: Pascal Getreuer <getreuer@google.com>
2025-11-25Merge remote-tracking branch 'origin/master' into developQMK Bot12-0/+460
2025-11-25Add Demod LM Rev. 1 (#25793)Danny8-0/+202
2025-11-25Add support for Coffee Break Keyboards' Coffeevan (#25805)andrew morton4-0/+258
2025-11-25Merge remote-tracking branch 'origin/master' into developQMK Bot3-0/+166
2025-11-24[Keyboard] Add Keenome Keys' "The Grid v2" (#25813)Nathan Sunday3-0/+166
* Add 'the_grid_v2' to QMK * Per documentation, formatted keyboard.json and add license to keymap.c * Update keyboards/keenome_keys/the_grid_v2/keyboard.json Co-authored-by: Jack Sangdahl <jack@pngu.org> * Create readme.md for The Grid v2 keyboard Added detailed readme for The Grid v2 keyboard including setup and bootloader instructions. * Revise readme for The Grid v2 keyboard Updated readme with specific hardware details. --------- Co-authored-by: Jack Sangdahl <jack@pngu.org>
2025-11-19Merge remote-tracking branch 'origin/master' into developQMK Bot3-0/+229
2025-11-18[Keyboard] Add Coffee Break Keyboards Acai (#25796)andrew morton3-0/+229
* Add support for Coffee Break Keyboards Acai * Apply suggestions from code review Co-authored-by: Jack Sangdahl <jack@pngu.org> * Ran qmk format-json * Misssed one of @waffle87's suggestions * Misssed another of @waffle87's suggestions * Try hosting on imgur.com * Remove empty layers, add boot to layer 2 * Enhance the default keymap * Use correct keycodes for RGB --------- Co-authored-by: Jack Sangdahl <jack@pngu.org>
2025-11-17Merge remote-tracking branch 'origin/master' into developQMK Bot4-0/+570
2025-11-17Hyper7 v4 (#25728)yiancar4-0/+570
2025-11-17Merge remote-tracking branch 'origin/master' into developQMK Bot3-0/+342
2025-11-17Add imi60-HS (#25773)Ivan Gromov3-0/+342
2025-11-12Align use of keymap level `_kb` callbacks (#25774)Joel Challis13-80/+46
2025-11-11[Core] suspend: suppress wake up keypress (#23389)Stefan Kerkmann1-2/+0
* suspend: suppress wake up keypress Waking the host from suspend is done by pressing any key on the keyboard, the regular key codes assigned to the keys are not important and must not be sent - otherwise they usually end up in password prompts as ghost characters that have to be deleted again. This commit adds suppression for all keys pressed at the time of wake up. Once a key is released it functions as a regular key again. Signed-off-by: Stefan Kerkmann <karlk90@pm.me> * suspend: update wake up matrix after wake up delay If USB_SUSPEND_WAKEUP_DELAY is set, the keyboard sleeps during wake up - which can be up to multiple seconds. To handle key presses and releases in that time frame we have to handle the following cases: 1. Key not pressed before suspend, and not pressed after wakeup → do nothing (normal case). 2. Key not pressed before suspend, but pressed after wakeup → set the wakeup_matrix bit to 1 (so that the press and release events would be suppressed). 3. Key pressed before suspend, but not pressed after wakeup → do nothing (the release event will be generated on the first matrix_task() call after the wakeup). 4. Key pressed before suspend, and still pressed after wakeup → do nothing (the release event will be generated some time later). Signed-off-by: Stefan Kerkmann <karlk90@pm.me> Co-authored-by: Sergey Vlasov <sigprof@gmail.com> * keyboards: anavi: macropad8: disable snake and rgb_test effects ...to shrink the binary size.
2025-11-08Merge remote-tracking branch 'origin/master' into developQMK Bot5-0/+806
2025-11-08[Keyboard] Add Rubrehaku (#24907)leyew5-0/+806
2025-11-08Generate `CUSTOM_MATRIX = lite` without `matrix_pins.custom` (#25453)Joel Challis3-3/+0
2025-11-04add SteelSeries prime, a stripped down prime+ (#24719)Alin Marin Elena11-0/+271
2025-11-01Add classic48 keyboard (#25492)Pablo Jiménez Mateo4-0/+275
Co-authored-by: Pablo Jimenez Mateo <pablojimenezmateo@gmail.com>
2025-11-01Add TRKeyboard TRK2 keyboard (#25754)Tvrd Rad Keyboards4-0/+180
Co-authored-by: Jack Sangdahl <jack@pngu.org> Co-authored-by: Joel Challis <git@zvecr.com>
2025-11-02Merge remote-tracking branch 'origin/master' into developQMK Bot8-0/+396
2025-11-02Sofle pico (#25750)Nes (Jordan)8-0/+396
2025-10-30Merge remote-tracking branch 'origin/master' into developQMK Bot4-0/+169
2025-10-30[Keyboard] Add Cornifi keyboard (#25753)Félix4-0/+169
2025-10-30Merge remote-tracking branch 'origin/master' into developQMK Bot4-0/+294
2025-10-30Add M4m5 support (#25499)SneakboxKB4-0/+294
2025-10-27Merge remote-tracking branch 'origin/master' into developQMK Bot7-0/+520
2025-10-26[Keyboard] Add WhirlwindFX ElementV2 (#25356)aedanmills7-0/+520
Co-authored-by: Joel Challis <git@zvecr.com> Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>