~ruther/qmk_firmware

ref: f20e17a19e80c31c30cd5bd4a566075babd2e564 qmk_firmware/keyboard d---------
f20e17a1 — jorge 9 years ago
ergodox_ez: added dvorak_spanish layout
89f0472b — Erez Zukerman 9 years ago
Merge pull request #352 from algernon/ergodox-ez/supercoder

ergodox_ez: Add a SuperCoder keymap
037b3f0d — Gergely Nagy 9 years ago
ergodox_ez: Add a SuperCoder keymap

Inspired by @faxm0dem, and the SuperCoder 2000 "keyboard".

Signed-off-by: Gergely Nagy <algernon@madhouse-project.org>
5501f231 — Erez Zukerman 9 years ago
Merge pull request #351 from adiabatic/master

Add KC_DQUO ("); update Zweihander
37640327 — Nathan Sharfi 9 years ago
Add single and double quotes to numpad layer

…as well as recover from a bunch of Git user errors.
9d6debd9 — Nathan Sharfi 9 years ago
Add double quote for everyone; update Zweihander
d06e940a — Erez Zukerman 9 years ago
[Erez & Jack] Removes keyboards which are not active on qmk
12370259 — Erez Zukerman 9 years ago
[Erez & Jack] Packages Space Cadet shifts into keycodes
f4a426a0 — Erez Zukerman 9 years ago
[Erez & Jack] Documents new Leader key functionality
287eb7ad — Jack Humbert 9 years ago
Converted audio play functions to *_user (#349)

* Updated personal layouts

* tweaked personal

* Nightly - Audio Cleanup

Refactored the LUTs. Abstracted some of the registers out of audio to
use more functional names. Split audio into audio and audio_pwm. WIP

* nightly - collapsed code

* Added check for note playing to LEDs

* Usability tweaks

* TWEAE

* nightly

added extra kcs to keymap common

* turned on Plank audio

* Added backlight breathing to atomic

* reverted accidental merge

* Added music and audio toggles to Quantum.c

* Redid the audio callbacks

* Adjusted default planck layout to use the user tone naming

* tabs to spaces

* Rewrote the ALL recipe to allow for faster parallel make

* tabs to spaces

* Renamed custom event functions to be 'startup_user' and 'shutdown_user'. Also moved the prototypes around.

* Tweaked pvc atomic layout to work with the pvc planck.

* updates midi scale calling
aaa758f1 — Eric Tang 9 years ago
Optimize matrix scanning (#343)
d66aa0ab — Peter 9 years ago
adds petereichinger's planck keymap (#340)

* Add custom keymap

* A little readme and remove old layout comments
ed349f0c — Erez Zukerman 9 years ago
Merge pull request #324 from Bubblepoint/master

Add adnw/k_o_y layout
b732b79b — Jack Humbert 9 years ago
adapts unicode to quantum.c (#333)

* Unicode

to have unicode input you need to:

- set your OS input method to UNICODE if needed
- enable unicode in your makefile
- copy the action_function from
keyboard/planck/keymaps/unicode/unicode.c to your keymap.c
set the target OS method in your keymap.c: void matrix_init_user() {
set_unicode_mode(UC_OSX); } you can then switch when you want with:
set_unicode_mode(UC_OSX); set_unicode_mode(UC_LNX);
set_unicode_mode(UC_WIN);
put some unicode codes in your keymap like so: UC(0x0061)
I did change the bit mask in quantum/keymap_common.c and .h
I’m afraid we will need uint32 to get a total support for all unicode
tables or relocate the handler as @mbarkhau did.

* rearranges keycode values, hooks-up unicode

* removes extra lalt ref

* adds unicode shortcuts and example
0428214b — Jack Humbert 9 years ago
adds music and audio toggles (#337)

* Updated personal layouts

* tweaked personal

* Nightly - Audio Cleanup

Refactored the LUTs. Abstracted some of the registers out of audio to
use more functional names. Split audio into audio and audio_pwm. WIP

* nightly - collapsed code

* Added check for note playing to LEDs

* Usability tweaks

* TWEAE

* nightly

added extra kcs to keymap common

* turned on Plank audio

* Added backlight breathing to atomic

* reverted accidental merge

* Added music and audio toggles to Quantum.c

* Redid the audio callbacks

* music/audio_on_user
fe9b1482 — Jack Humbert 9 years ago
adds KC_NUBS, KC_NUHS and shifted versions to default keymaps
2425fd29 — Jack Humbert 9 years ago
fixes default planck keymap
b79400e0 — Jacob Bilger 9 years ago
Folders for each keymap.c file (#332)

* Add folders to keymaps

* test

* test
e2aa980a — Jack Humbert 9 years ago
cleans up default keymaps (olkb)
fde477a9 — Jack Humbert 9 years ago
updates midi functionality (#331)

* implements leader key for planck experimental

* allows override of leader timeout

* adds ability to use the leader key in seq

* fixes leader keycode

* adds chording prototype

* fixes keycode detection

* moves music mode to quantum.c

* disables chording by default

* adds music sequencer functionality

* implements audio/music functions in quantum.c

* splits up process_action to allow independent processing of actions

* moves midi stuff to quantum.c

* adds additional scales for midi
Next