summaryrefslogtreecommitdiffstats
path: root/users
Commit message (Collapse)AuthorAgeFilesLines
* [Keymap] Update bcat's keymaps/userspace to share logic, add OLED ↵Jonathan Rascher2021-12-2712-15/+874
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | functionality, and set up one of my macropads for WFH (#14702) * Add script to build all bcat keymaps at once * Move userspace RGB to separate source file * Move layer handling logic into userspace * Move keycap aliases into userspace * Add OLED userspace library and Lily58 OLED setup * Add Luna keyboard pet, generic OLED pet framework Luna artwork and original implementation by HellSingCoder, licensed under GPL v2.0. See also: https://github.com/qmk/qmk_firmware/blob/6dfe915e26d7147e6c2bed495d3b01cf5b21e6ec/keyboards/sofle/keymaps/helltm/keymap.c * Use OLED on bcat's Crkbd I had to turn off a few unused features to address firmware size limits. * Remove vestigial NK_TOGG keybindings * Add post-render hook to OLED pet API This enables OLED pets to draw custom widgets (e.g., LED indicator status) on top of their animation frames. * Add Isda keyboard pet For future use on my Unicorne keyboard. Unicorn artwork by sparrow666, licensed under GPL v2.0. See also: https://opengameart.org/content/unicorn-2 * Replace OLED timeout implementation with custom The default implementation never lets the OLED turn off if a continuous animation is in progress. The custom one does. * Move keyboard state for OLED functions into struct No change in firmware size, but makes keymaps read a little nicer and enables more functionality in OLED pets. * Enable continuously running OLED pet (for Luna) * Sync OLED state; enable Bootmagic only when needed The new extensible split transport for Split Common finally allows OLED on/off status to be synced between halves of the keyboard. :) Unfortunately, this required disabling Bootmagic Lite to keep my Crkbd under the firmware size limit. (I now after 28 bytes free on avr-gcc version 8.5.0.) So now I'll enable Bootmagic only on keyboards that actually require it, i.e., ones lacking an accessible reset button. * Update 9-Key macropad keymap for working from home * Remove includes redundant with quantum.h Co-authored-by: Drashna Jaelre <drashna@live.com> * Simplify BCAT_OLED_PET makefile logic * Swap some keys on my 9-Key macropad around * Inline spurious variable in OLED code * Remove max brightness that's now set by default The default max brightness is only 120 rather than 150, but that might actually fix some weirdness I've seen with bright white LED settings. * Enable specific RGBLIGHT modes instead of default The general trend these days seems to be enabling only the modes you want, so I'm manually expanding the ones currently enabled by RGBLIGHT_ANIMATIONS. I'd like to try out the TWINKLE mode too, but it seems not to work at all on ARM right now, and all my usable RGBLIGHT keebs are ARM boards. * Reenable RGB_MATRIX animations after #15018 My Crkbd still has a reasonable amount of free space with these: 27974/28672 (97%, 698 bytes free). The RGB_MATRIX_KEYPRESSES effects would put it over the firmware size limit, but I really don't ever use those anyway. * Use new get_u8_str function for WPM display Co-authored-by: Drashna Jaelre <drashna@live.com>
* K.O.Y and German layout for several boards (#14991)Paul Scheikl2021-12-271-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Added accent. * Added keymap for 5x6 dactyl manuform on KOY layout * Added xd75 folder that is not in the main repo anymore? * Added keymap for naked48 on KOY layout * Added keymap for splitreus62 on KOY layout * Added keymap for Dactyl Manuform 4x6 with RGB LEDs and K.O,Y layout * Fixed error where handedness was not correctly determined because of combining vbus pins of both controllers. * Replaced dynamic macros bith backspace and delete. * Changed detecting handedness from detecting usb communication to checking a wired pin. This avoids problems when booting the PC, where VBUS is already high, but no communication is happening -> both halves think they are not master. * Update keyboards/handwired/dactyl_manuform/4x6/keymaps/scheiklp/rules.mk Co-authored-by: Drashna Jaelre <drashna@live.com> * Update keyboards/naked48/keymaps/scheiklp/keymap.c Co-authored-by: Drashna Jaelre <drashna@live.com> * Update keyboards/naked48/keymaps/scheiklp/keymap.c Co-authored-by: Drashna Jaelre <drashna@live.com> * Update keyboards/naked48/keymaps/scheiklp/keymap.c Co-authored-by: Drashna Jaelre <drashna@live.com> * Update keymap.c Added copyright * Update config.h * Update rules.mk * Updated files according to PR requests. * Update keyboards/xd75/config.h Co-authored-by: Drashna Jaelre <drashna@live.com> * Update keyboards/xd75/config.h Co-authored-by: Drashna Jaelre <drashna@live.com> * Update keyboards/xd75/keymaps/default/keymap.c Co-authored-by: Drashna Jaelre <drashna@live.com> * Update keyboards/xd75/config.h Co-authored-by: Drashna Jaelre <drashna@live.com> * Removed duplicate code. Updated copyright info. * Restored readme Co-authored-by: Drashna Jaelre <drashna@live.com>
* [Keymap] Jonavin kbd 67 keymap with advance RGB functions (#15527)jonavin2021-12-242-1/+5
| | | Co-authored-by: Jonavin <=>
* zigotica userspace rows tweak: TAB in default STENAI layer, ESC in sym/fn ↵Sergi Meseguer2021-12-211-6/+6
| | | | layers (#15525)
* [Keymap] Unicode and Pointing Device and Autocorect for drashna keymaps (#15415)Drashna Jaelre2021-12-1433-41/+751
|
* Update noroadsleft userspace and keymaps (2021-12-13) (#15470)James Young2021-12-133-97/+31
| | | | | | | | * remove macroMode functionality * update kbdfans/kbd75/rev1:noroadsleft keymap - replace `_______` instances with `XXXXXXX` on System layer - add line breaks between keymap layers
* Remove deprecated defines from my keymaps (#15353)Mats Nilsson2021-11-301-8/+8
|
* [Keymap] Unicode and cursor sync - drashna keymap (#15328)Drashna Jaelre2021-11-287-49/+336
|
* Enable RGB Matrix animations being used (#15338)stanrc852021-11-281-2/+8
|
* Merge remote-tracking branch 'origin/master' into developQMK Bot2021-11-174-8/+25
|\
| * [Keymap] updates for oled, and diablo 2 layer - Drashna (#15194)Drashna Jaelre2021-11-174-8/+25
| |
* | Require explicit enabling of RGB Matrix modes (#15018)Drashna Jaelre2021-11-155-156/+205
| |
* | Merge remote-tracking branch 'origin/master' into developQMK Bot2021-11-104-31/+670
|\|
| * Updates to drashna keymap and minor updates to tractyl manuform (#15101)Drashna Jaelre2021-11-104-31/+670
| |
* | Merge remote-tracking branch 'upstream/master' into developJames Young2021-11-091-2/+2
|\|
| * Update noroadsleft userspace and keymaps (2021-11-09) (#15099)James Young2021-11-091-2/+2
| |
* | Remove `BOOTMAGIC_ENABLE = lite` option (#15002)James Young2021-11-057-7/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * remove BOOTMAGIC_ENABLE=lite setting * change keyboard BOOTMAGIC_ENABLE rules Edits keyboard-level instances of `BOOTMAGIC_ENABLE = lite` to `BOOTMAGIC_ENABLE = yes`. * change keyboard BOOTMAGIC_ENABLE inline comments Edits keyboard-level BOOTMAGIC_ENABLE inline comments to "Enable Bootmagic Lite". * change keymap BOOTMAGIC_ENABLE rules Edits keymap-level instances of `BOOTMAGIC_ENABLE = lite` to `BOOTMAGIC_ENABLE = yes`. * change keymap BOOTMAGIC_ENABLE inline comments Edits/adds keymap-level BOOTMAGIC_ENABLE inline comments to read "Enable Bootmagic Lite". * change layout/user BOOTMAGIC_ENABLE rules/comments Edits instances of `BOOTMAGIC_ENABLE = lite` to `BOOTMAGIC_ENABLE = yes`. Edits/adds keymap-level BOOTMAGIC_ENABLE inline comments to read "Enable Bootmagic Lite". * update non-rules.mk BOOTMAGIC_ENABLE references in keyboards/ * remove docs references to Full Bootmagic * convert data-driven Bootmagic Lite instances * remove Bootmagic Lite bodge from data-driven generation * Merge remote-tracking branch 'upstream/develop' into rm/bootmagic-full_q4a * update docs/ja/config_options.md per mtei * update docs/faq_misc.md per mtei Remove remaining Full Bootmagic reference.
* | [Keymap] Fix missing return for oled task in drashna userspace (#15012)Drashna Jaelre2021-11-021-1/+1
| |
* | [Core] Change OLED task function to be boolean (#14864)Drashna Jaelre2021-11-027-9/+16
| | | | | | | | | | | | | | | | | | | | | | | | | | * [Core] Add kb level callbacks to OLED driver * Update keyboards and keymaps * Update docs * Update userspace configs * Add fix for my keymap ... * update lefty
* | Merge remote-tracking branch 'origin/master' into developQMK Bot2021-10-313-2/+10
|\|
| * [Keymap] Disable in-switch RGB when computer goes to bed (#14993)MechMerlin2021-10-303-2/+10
| |
* | Merge remote-tracking branch 'origin/master' into developQMK Bot2021-10-305-163/+263
|\|
| * [Keymap] Jonavin userspace encoder alt tab scrolling (#14979)jonavin2021-10-305-163/+263
| | | | | | Co-authored-by: Jonavin <=>
* | Merge remote-tracking branch 'origin/master' into developQMK Bot2021-10-291-2/+2
|\|
| * [Keymap] ajp10304: add mouse scroll keys (#14953)Alan Pocklington2021-10-291-2/+2
| |
* | Merge remote-tracking branch 'origin/master' into developQMK Bot2021-10-261-1/+0
|\|
| * Remove unused KEYBOARD_LOCK_ENABLE from rules (#14920)Drashna Jaelre2021-10-251-1/+0
| |
* | Merge remote-tracking branch 'origin/master' into developQMK Bot2021-10-231-1/+35
|\|
| * [Keymap] Add logo to riblee userspace (#14875)Reibl János Dániel2021-10-231-1/+35
| |
* | Merge remote-tracking branch 'origin/master' into developQMK Bot2021-10-231-0/+6
|\|
| * [Keymap] Simplify unicode input mode change and CTRL and GUI swapping (#14874)Reibl János Dániel2021-10-221-0/+6
| |
* | Merge remote-tracking branch 'origin/master' into developQMK Bot2021-10-235-1/+33
|\|
| * [Keymap] Jonavin userspace keymap updates INVERT_NUMLOCK_INDICATOR (#14880)jonavin2021-10-225-1/+33
| | | | | | Co-authored-by: Jonavin <=>
* | Tidy up LCD_ENABLE/visualizer references (#14855)Joel Challis2021-10-201-21/+0
| | | | | | | | | | | | | | * Tidy up LCD_ENABLE/visualizer references * Fix up my (333fred) ergodox keymap with new LCD driver Co-authored-by: Fredric Silberberg <fred@silberberg.xyz>
* | Merge remote-tracking branch 'origin/master' into developQMK Bot2021-10-166-405/+483
|\|
| * [Keymap] Update Miryoku (#14827)Manna Harbour2021-10-156-405/+483
| |
* | Merge remote-tracking branch 'origin/master' into developDrashna Jael're2021-10-157-1019/+762
|\|
| * [Keymap] Drashna Keymap Updates (#14842)Drashna Jaelre2021-10-157-1019/+762
| | | | | | | | | | | | | | * Fix issues with user split transport code * Improve OLED (More font stuff, improved keylogger, etc) * Add `KEYLOCK` macro to disable USB, borrowed from command feature. * Convert Kyria fully to proton C (no more AVR kyria) * Add Work Louder Work Board keymap
* | Merge remote-tracking branch 'origin/master' into developQMK Bot2021-10-168-0/+392
|\|
| * [Keymap] zigotica userspace (#14670)Sergi Meseguer2021-10-158-0/+392
| | | | | | | | Co-authored-by: Drashna Jaelre <drashna@live.com> Co-authored-by: Ryan <fauxpark@gmail.com>
* | Merge remote-tracking branch 'origin/master' into developQMK Bot2021-10-162-2/+3
|\|
| * [Keymap] Userspace updates (#14832)stanrc852021-10-152-2/+3
| |
* | Merge remote-tracking branch 'origin/master' into developQMK Bot2021-10-141-1/+13
|\|
| * [Keymap] Display default layer name (#14819)Reibl János Dániel2021-10-141-1/+13
| |
* | Merge remote-tracking branch 'origin/master' into developQMK Bot2021-10-122-0/+8
|\|
| * [Keymap] Add workman layout (#14792)Reibl János Dániel2021-10-112-0/+8
| |
* | Merge remote-tracking branch 'origin/master' into developQMK Bot2021-10-124-43/+112
|\|
| * [Keymap] Jonavin new obe keymap (#14657)jonavin2021-10-114-43/+112
| | | | | | | | Co-authored-by: Drashna Jaelre <drashna@live.com> Co-authored-by: Jonavin <=>
* | Remove sysex API (#14723)Ryan2021-10-061-1/+0
| |
* | Merge remote-tracking branch 'origin/master' into developQMK Bot2021-10-054-4/+20
|\|