summaryrefslogtreecommitdiffstats
path: root/keyboards/ergodox
AgeCommit message (Collapse)AuthorFilesLines
2017-06-18Merge pull request #1408 from fredizzimo/fix_build_improve_travisJack Humbert1-0/+1
Fix the two failing keymaps and improve the travis build script
2017-06-18Merge pull request #1361 from fredizzimo/ergodox_infinity_backlightJack Humbert4-27/+75
Add Ergodox Infinity backlight support
2017-06-18Add missing include to Ergodox Belak keymapFred Sundvik1-0/+1
2017-06-16ergodox: initial addition of belak themeKaleb Elwert5-0/+522
Imported from external repo https://github.com/belak/ergodox-layout at commit 233008ad8c46a85cb118fca0be093c3e751075b0
2017-06-16Make sure backlight is in the range 0-100Fred Sundvik1-1/+1
2017-06-15Fix typo in BACKLIGHT_ENABLEFred Sundvik1-2/+2
2017-06-12remove .hex, .PNG, .jpgJack Humbert7-4/+4
2017-06-12remove the rest of the .pngsJack Humbert36-24/+29
2017-06-11remove most .pngsJack Humbert87-2327/+51
2017-06-03Add backlight support to the default Ergodox Infinity animationsFred Sundvik1-11/+58
2017-06-03Add backlight control to the IS31FL3731 driverFred Sundvik1-4/+10
2017-06-03Ergodox Adam keymapAdam Bell4-1/+183
2017-06-03Turn off LED matrix by defaultFred Sundvik1-2/+2
2017-06-03Let BACKLIGHT_ENABLE control the Infinity LEDsFred Sundvik3-10/+5
2017-06-01Update licensing on visualizer.cFredric Silberberg1-14/+1
2017-06-01Updated readmeFredric Silberberg2-7/+13
2017-06-01Added several new macrosFredric Silberberg1-19/+63
2017-05-31Fixed numpad 0 layoutFredric Silberberg2-3/+3
2017-05-31Use code blocks for keyboard layoutsFredric Silberberg1-3/+13
2017-05-31Completed iteration 1 of my layoutFredric Silberberg4-98/+306
2017-05-31Added initial keymap filesFredric Silberberg3-0/+273
2017-05-29Adds prevent stuck modifiers to EZ defaultErez Zukerman2-1/+3
2017-05-24tweaks default mouse speed constantsErez Zukerman1-2/+2
2017-05-16Created a dvorak keymap for Swedish developers using Visual StudioChristian Westerlund2-0/+359
2017-05-11Fix spelling of "persistent"Nikolaus Wittenstein1-4/+4
Fixes #1201.
2017-05-08Merge pull request #1279 from awpr/masterErez Zukerman2-26/+38
Change to per-key eager debouncing for ErgoDox EZ.
2017-05-06Update README for keymap “coderkun_neo2”coderkun1-9/+2
2017-05-06Merge tag '0.5.43' into coderkun_neo2coderkun34-371/+1582
2017-05-06Fix F-keys on right hand to start on first keycoderkun1-1/+1
2017-04-27Change to per-key eager debouncing for ErgoDox EZ.Andrew Pritchard2-26/+38
Empirically, waiting for N consecutive identical scans as a debouncing strategy doesn't work very well for the ErgoDox EZ where scans are very slow compared to most keyboards. Instead, debounce the signals by eagerly reporting a change as soon as one scan observes it, but then ignoring further changes from that key for the next N scans. This is implemented by keeping an extra matrix of uint8 countdowns, such that only keys whose countdown is currently zero are eligible to change. When we do observe a change, we bump that key's countdown to DEBOUNCE. During each scan, every nonzero countdown is decremented. With this approach to debouncing, much higher debounce constants are tolerable, because latency does not increase with the constant, and debounce countdowns on one key do not interfere with events on other keys. The only negative effect of increasing the constant is that the minimum duration of a keypress increases. Perhaps I'm just extremely unlucky w.r.t. key switch quality, but I saw occasional bounces even with DEBOUNCE=10; with 15, I've seen none so far. That's around 47ms, which seems like an absolutely insane amount of time for a key to be bouncy, but at least it works.
2017-04-19Fix LCD SS pin configurationFred Sundvik1-1/+1
There was a typo, so the attempted configuration proably didn't do what it should have done. I think it left the pin floating, and could cause the LCD problems issue-1230.
2017-04-18Merge pull request #1235 from siroken3/siroken3Jack Humbert5-0/+202
Siroken3
2017-04-14Fix KEYMAP_YORUIAN macroThomas Fitzsimmons1-19/+26
Fix the ordering of the arguments to the KEYMAP macro.
2017-04-13Add missing serial_link.h includeFred Sundvik1-0/+1
Which fixes a warning when building Ergodox Infinity as a righthand master.
2017-04-13Fix keymap yoruian on InfinityFred Sundvik2-23/+12
2017-04-13Fix overflow warning in ordinary keymapFred Sundvik1-1/+1
2017-04-13Fix overflow warnings in dvorak_programmerFred Sundvik1-3/+3
2017-04-12Merge pull request #1213 from nstickney/masterJack Humbert4-1/+337
ErgoDox Familiar layout
2017-04-09Extract Ergodox default visualizer into simple_visualizerFred Sundvik2-96/+131
It's good enough if you only want to change the lcd text and color.
2017-04-09Rename led test to led_keyframes and move animation to ErgodoxFred Sundvik2-1/+59
2017-04-09Create a file for shared Ergodox Infinity animationsFred Sundvik5-77/+90
2017-04-09Combine startup and resume animationsFred Sundvik2-17/+6
2017-04-09Fix suspend not disabling backlightFred Sundvik2-2/+2
2017-04-09Move the logo drawing keyframe to lcd_keyframesFred Sundvik2-40/+4
2017-04-09Move LCD logo to visualizer resourcesFred Sundvik3-84/+4
2017-04-09Add automatic flush for the LCD screenFred Sundvik3-4/+1
2017-04-09LCD initialization sequence according to the docsFred Sundvik2-29/+13
The LCD initialization show now be much better and faster with no flickering at the startup. Also fix the contrast control.
2017-04-09Yet another try to fix the LCD corruptionFred Sundvik1-22/+22
It turns out that the ChibiOS K20 SPI driver doesn't handle the chip select, so it needs to be done manually. Acquiring the bus is not enough since the pin was in the wrong mode. This is now fixed. Also increase the frequency of the SPI from around 200kHz to nearly 20 Mhz.
2017-04-09Move common visualizer keyframes into visualizer_keyframes.hFred Sundvik2-0/+2
2017-04-09Remove the need to manually enable the visualizerFred Sundvik2-8/+4