aboutsummaryrefslogtreecommitdiffstats
path: root/keyboards/preonic/keymaps
AgeCommit message (Collapse)Author
2018-01-01backlight breathing overhaul (#2187)Gravatar Balz Guenat
* add breathing to bananasplit * backlight breathing overhaul * fix the backlight_tick thing. * fix for vision_division backlight * fix a few keymaps and probably break breathing for some weirdly set-up boards. * remove BL_x keycodes because they made unreasonable assumptions * some fixes for BL keycodes * integer cie lightness scaling * use cie lightness for non-breathing backlight and make breathing able to reach true max brightness
2017-11-14shrink preonic by a bitGravatar Jack Humbert
2017-11-14QMK DFU bootloader generation (#2009)Gravatar Jack Humbert
* adds :bootloader target * update planck and preonic revisions * remove references to .h files for planck * update preonic keymap * only add keyboard.h files that exist * add production target * hook things up with the new lufa variables * update rules for planck/preonic * back backlight key turn of status led when pressed * add manufacturer/product strings to bootloader
2017-09-27remove all makefiles from keyboard directoriesGravatar Jack Humbert
2017-09-08Remove all Makefiles from the keyboards directory. (#1660)Gravatar skullydazed
* Remove all Makefiles from the keyboards directory. * update keymaps added in the last 8 days * Ignore keyboard/keymap makefiles * update hand_wire to reflect our new Makefile-less reality * Update the make guide to reflect the new reality * move planck keymap options to rules.mk * update planck keymaps 4real * trigger travis * add back build_keyboard.mk * restore changes to build_keyboard
2017-08-20Remove PLAY_NOTE_ARRAY usages to get rid of warning.Gravatar Joe Wasson
2017-08-19Merge pull request #1601 from dlaroe/masterGravatar Jack Humbert
My keymaps only
2017-08-18Added Preonic Makefile and readme.mdGravatar
2017-08-18Updated keymaps with second LOWER for the right handGravatar
2017-07-24First UpdateGravatar
2017-07-23adds music mode, music mode songs, music maskGravatar Jack Humbert
2017-07-23remove unneccesary headersGravatar Jack Humbert
2017-07-23clean-up planck and preonic keymaps, move audio stuff aroundGravatar Jack Humbert
2017-05-23preonic mapGravatar Nick Choi
2017-05-11Fix spelling of "persistent"Gravatar Nikolaus Wittenstein
Fixes #1201.
2017-04-13Fix warnings in CMD-PreonicGravatar Fred Sundvik
The startup_sound is defined using MUSICAL_NOTEs, since non-constant initializer expressions are not allowed in C.
2017-04-02Merge remote-tracking branch 'upstream/master'Gravatar Xyverz
2017-03-30Worked around some new Makefile issues.Gravatar nielsenz
2017-03-29Merge branch 'master' into to_pushGravatar Zay950
2017-03-28Merge pull request #1112 from newsboytko/newsboytko/midi-keycodesGravatar Jack Humbert
Flesh out MIDI support
2017-03-08Update smt keymap READMEsGravatar Stephen Tudor
2017-03-08Update smt keymaps for consistencyGravatar Stephen Tudor
2017-02-25Update existing keymapsGravatar Gabriel Young
Update existing keymaps to enable MIDI_BASIC functionality. Also added an option MIDI_ENABLE_STRICT to be strict about keycode use (which also reduces memory footprint at runtime)
2017-02-10Merge remote-tracking branch 'upstream/master'Gravatar Xyverz
2017-02-10Added RGB Underglow to my PreonicGravatar Xyverz
2017-01-28s/Bkps/BkspGravatar Stephen Tudor
2017-01-28Carry over Planck updates to my Preonic keymapGravatar Stephen Tudor
2017-01-26replace jackhumbert with qmkGravatar Jack Humbert
2017-01-26Merge pull request #1033 from smt/smt/preonicGravatar Jack Humbert
Add smt's keymap for Preonic
2017-01-25Remove COLEMAK from preonic_keycodes enumGravatar Stephen Tudor
2017-01-25layer defines to enumGravatar Jack Humbert
2017-01-25Update readme for smt Preonic keymapGravatar Stephen Tudor
2017-01-25Add smt keymap for PreonicGravatar Stephen Tudor
2017-01-08Usaility changes to keymap, tidying up a bit.Gravatar xyverz
2016-12-13ChangesGravatar xyverz
2016-12-06Merge remote-tracking branch 'upstream/master'Gravatar xyverz
2016-11-26separated into api files/folderGravatar Jack Humbert
2016-11-17rgb light through midiGravatar Jack Humbert
2016-11-16Merge remote-tracking branch 'upstream/master'Gravatar xyverz
2016-11-10Missed removing a functionGravatar Zach Nielsen
2016-11-10Removed some common functions from my keymapGravatar nielsenz
2016-11-10Missed some stuff. Added a song (stole it from reddit).Gravatar Zach Nielsen
2016-11-10Adding my (zach) keymaps for planck and preonicGravatar Zach Nielsen
2016-10-231.2 updateGravatar jacwib
2016-10-22Update readme to reflect 1.1 changes.Gravatar jacwib
2016-10-22Update keymap to reflect 1.1 changes.Gravatar jacwib
2016-10-22Update readme to reflect changesGravatar jacwib
2016-10-18Add files via uploadGravatar Xyverz
Minor layout changes
2016-08-17tap-dance: Major rework, to make it more reliableGravatar Gergely Nagy
This reworks how the tap-dance feature works: instead of one global state, we have a state for each tap-dance key, so we can cancel them when another tap-dance key is in flight. This fixes #527. Since we have a state for each key, we can avoid situation where a keyup would mess with our global state. This fixes #563. And while here, we also make sure to fire events only once, and this fixes #574. There is one breaking change, though: tap-dance debugging support was removed, because dumping the whole state would increase the firmware size too much. Any keymap that made use of this, will have to be updated (but there's no such keymap in the repo). Also, there's a nice trick used in this rework: we need to iterate through tap_dance_actions in a few places, to check for timeouts, and so on. For this, we'd need to know the size of the array. We can't discover that at compile-time, because tap-dance gets compiled separately. We'd like to avoid having to terminate the list with a sentinel value, because that would require updates to all keymaps that use the feature. So, we keep track of the highest tap-dance code seen so far, and iterate until that index. Signed-off-by: Gergely Nagy <algernon@madhouse-project.org>
2016-08-14Fix bugGravatar jacwib