diff options
author | Cole Markham <github@themarkhams.us> | 2018-04-18 23:57:24 -0500 |
---|---|---|
committer | Jack Humbert <jack.humb@gmail.com> | 2018-04-19 00:57:24 -0400 |
commit | b4bdebab9a48546160465d64000724a07617054e (patch) | |
tree | 418021491d61b5c6039383d7bcdcd7d449d4dbe7 /keyboards/meira/keymaps/default/config.h | |
parent | 3d3c093173f6e9a838671bd7484b3a11dc564c1a (diff) |
Meira updates for bluetooth and audio (#2731)
* Add audio output
* Update Miera to fix bluetooth issues, bootloader definition.
* Added keymap with audio example
* Cleanup Meira audio code
Diffstat (limited to 'keyboards/meira/keymaps/default/config.h')
-rw-r--r-- | keyboards/meira/keymaps/default/config.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/keyboards/meira/keymaps/default/config.h b/keyboards/meira/keymaps/default/config.h index 97210115b9..5f5844a70a 100644 --- a/keyboards/meira/keymaps/default/config.h +++ b/keyboards/meira/keymaps/default/config.h @@ -20,5 +20,15 @@ #include "../../config.h" // place overrides here +#define MUSIC_MASK (keycode != KC_NO) +#ifdef AUDIO_ENABLE + #define STARTUP_SONG SONG(PLANCK_SOUND) + // #define STARTUP_SONG SONG(NO_SOUND) + + #define DEFAULT_LAYER_SONGS { SONG(QWERTY_SOUND), \ + SONG(COLEMAK_SOUND), \ + SONG(DVORAK_SOUND) \ + } +#endif #endif |