1
0
Fork 0

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
This commit is contained in:
Cole Markham 2018-04-18 23:57:24 -05:00 committed by Jack Humbert
parent 3d3c093173
commit b4bdebab9a
13 changed files with 347 additions and 44 deletions

View file

@ -37,6 +37,17 @@ enum custom_keycodes {
ADJUST,
};
#ifdef AUDIO_ENABLE
float tone_my_startup[][2] = SONG(ODE_TO_JOY);
float tone_my_goodbye[][2] = SONG(ROCK_A_BYE_BABY);
float tone_qwerty[][2] = SONG(QWERTY_SOUND);
float tone_dvorak[][2] = SONG(DVORAK_SOUND);
float tone_colemak[][2] = SONG(COLEMAK_SOUND);
#endif /* AUDIO_ENABLE */
// define variables for reactive RGB
bool TOG_STATUS = false;
int RGB_current_mode;