summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2019-05-06Merge pull request #36 from zsa/fix/ws2812_matrix_refsFlorian Didron
Fixing incorrect usage of RGBLED_NUM in ws2812 driver when used with RGB Matrix (#5744)
2019-05-06Merge pull request #35 from zsa/fix/rgblight_hue_rangeFlorian Didron
Realign RGB Light HUE range
2019-05-01Fixing incorrect usage of RGBLED_NUM in ws2812 driver when used with RGB ↵XScorpion2
Matrix (#5744)
2019-05-01rgblight 255 hue (#5547)XScorpion2
2019-04-30Merge pull request #34 from zsa/fix/mouse_movementFlorian Didron
Re-fix Mousekey Movements
2019-04-30Merge pull request #33 from zsa/feature/per_level_matrix_effectsFlorian Didron
RGB Matrix: Custom effects on a kb/user level
2019-04-29Re-fix Mousekey MovementsDrashna Jaelre
2019-04-30Merge pull request #31 from zsa/fix/lib8tion_functionsFlorian Didron
Fix/lib8tion functions
2019-04-30Merge pull request #30 from zsa/feature/space_cadetFlorian Didron
Simple extended space cadet (#5277)
2019-04-30Merge pull request #29 from zsa/fix/planck_ez_ledsFlorian Didron
[Keyboard] Fix red an green leds location (qmk#5698)
2019-04-30Merge pull request #28 from zsa/fix/wake_on_chibosFlorian Didron
Fix wakeup function on ChibiOS
2019-04-29RGB Matrix: Custom effects on a kb/user level (#5338)Daniel Prilik
* Revamped custom effects approach See docs for example usage * push-up RGB Matrix default mode Override default effect using RGB_MATRIX_STARTUP_MODE. Useful on boards without EEPROM support (*cough* Massdrop ALT/CTRL *cough*) * update docs
2019-04-29Removed forced in lining for lib8tion functions (#5670)XScorpion2
2019-04-29Change lib8tion library to be usable in user keymaps (#5598)Alec Geatches
* Move lib8tion header-defined constant into implementation file, add to build * Move b_m16_interleave initializtion to lib8tion.c, change build to include lib8tion.c in QUANTUM_LIB_SRC * Remove left-over whitespace * Move lib8tion include by RGB_MATRIX_ENABLE code in makefile * Revert build changes and change lib8tion b_m16_interleave constant to static
2019-04-29Simple extended space cadet (#5277)XScorpion2
* Simplifying and Extending Space Cadet to work on Ctrl and Alt keys * PR Review feedback * Reverting back to keycodes
2019-04-28[Keyboard] Fix red an green leds location (#5698)Florian Didron
2019-04-26Merge pull request #27 from zsa/src_fixFlorian Didron
Src fix
2019-04-26Merge branch 'master' into src_fixFlorian Didron
2019-04-26Merge pull request #26 from zsa/rgb_updatesFlorian Didron
RGB Light Updates
2019-04-25Fix wakeup function on ChibiOSDrashna Jaelre
Somebody was a very, very bad boy, and did a poor job of copy-pasting
2019-04-24Add changelogDrashna Jaelre
2019-04-24fix LIB_SRC and QUANTUM_LIB_SRC for ARM (#5623)Takeshi ISHII
* fix LIB_SRC and QUANTUM_LIB_SRC for ARM(chibios) * remove ARFLAGS * tmk_core/arm_atsam.mk:AR: remove 'rcs'
2019-04-24Add changelogDrashna Jaelre
2019-04-24[FIX] Misspelled RGB_YELLOW (#5692)Rockman18
2019-04-24Define RGB colors (#5300)Erovia
* Define RGB colors Define RGB colors and pass them to the rgblight functions, instead of defining multiple macros.
2019-04-24add RGBLIGHT_SPLIT_SET_CHANGE_MODEHSVS; to rgblight_update_dword()mtei
2019-04-24add RGBLIGHT_SPLIT_SET_CHANGE_MODEHSVS; to eeconfig_update_rgblight_default()mtei
2019-04-24Merge pull request #25 from zsa/fix/travis_checkFlorian Didron
Improve Travis CI Script
2019-04-23Add proper keymaps for glow and reactive glowDrashna Jaelre
2019-04-23Remove additional unneeded Planck filesDrashna Jaelre
2019-04-23Compile all keymapsDrashna Jaelre
Specifically, we want to make sure that the Ergodox EZ Glow keymap is compiled here
2019-04-23Merge pull request #24 from zsa/fix/rgb_matrix_initFlorian Didron
Fix RGB Matrix EEPROM initialization
2019-04-23Merge branch 'master' into fix/rgb_matrix_initFlorian Didron
2019-04-23Merge pull request #23 from zsa/fix/avr_gcc_compilerFlorian Didron
Fix AVR GCC 8.x compiler error
2019-04-23Merge branch 'master' into fix/avr_gcc_compilerFlorian Didron
2019-04-23Merge pull request #22 from zsa/mouse_keysFlorian Didron
Improvements to Mousekey's Constant speed mode
2019-04-23Merge branch 'master' into mouse_keysFlorian Didron
2019-04-23Merge pull request #21 from zsa/feature/more_reactive_modesFlorian Didron
Adds three addition RGB Matrix Reactive modes
2019-04-23Merge branch 'master' into feature/more_reactive_modesFlorian Didron
2019-04-23Merge pull request #20 from zsa/feature/oled_driverFlorian Didron
Adds support for OLED Driver
2019-04-23Merge branch 'master' into feature/oled_driverFlorian Didron
2019-04-23Merge pull request #19 from zsa/feature/split_rgbFlorian Didron
Adds the Split RGBLight support
2019-04-22Add changelogDrashna Jaelre
2019-04-22Init RGB Matrix EEPROMDrashna Jaelre
I'm not sure how to check if it's the same as RGBLIGHT's EEPROM, but if you don't init it, it **will not** work properly until it is initialized.
2019-04-22Add changelogDrashna Jaelre
2019-04-22Make sure NOBITS is set on reset_keyDanny Nguyen
Patch from https://github.com/qmk/qmk_firmware/issues/3657#issuecomment-415147411 Long story short, in avr-gcc pre-8.2, reset_key was assigned to a memory area that was in a normal range, but when 8.2 came out, that memory got moved to an out of range area, causing errors like 0x800293 out of range. Apparently, this was fixed up in avr-gcc, but we haven't seen a release with the fix yet (we expected it in 8.3, but that didn't happen for some reason). What this commit does is move the reset_key back to the original memory location it was in before.
2019-04-22Add changelogDrashna Jaelre
2019-04-22Improve mouse keys docs and constant speed modeMarkus Weimar
2019-04-22Add changelogDrashna Jaelre
2019-04-22RGB Matrix Animations: Three/six new reactive effects (wide, cross, nexus) ↵M-AS
(#5602) * added 3 new RGB_Matrix effects * made cross effect behavior smoother * removed dead code * added effect descriptions