diff options
author | peepeetee <43021794+peepeetee@users.noreply.github.com> | 2022-02-01 10:11:18 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-31 18:11:18 -0800 |
commit | 8515d12e2088fb8a3284a3ae239cc4fc945643e7 (patch) | |
tree | 2cb6c2067669c8626be3c4021b2e405028e236d7 /keyboards/omkbd/ergodash/rev1/rev1.c | |
parent | 658d211804adfb9af31ea246a1e1e786ecab2a9f (diff) |
[Keyboard] move @omkbd 's boards to /omkbd (#16116)
Diffstat (limited to 'keyboards/omkbd/ergodash/rev1/rev1.c')
-rw-r--r-- | keyboards/omkbd/ergodash/rev1/rev1.c | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/keyboards/omkbd/ergodash/rev1/rev1.c b/keyboards/omkbd/ergodash/rev1/rev1.c new file mode 100644 index 0000000000..00f81cae11 --- /dev/null +++ b/keyboards/omkbd/ergodash/rev1/rev1.c @@ -0,0 +1,32 @@ +#include "ergodash.h" + +#ifdef AUDIO_ENABLE + float tone_startup[][2] = SONG(STARTUP_SOUND); + float tone_goodbye[][2] = SONG(GOODBYE_SOUND); +#endif + +void matrix_init_kb(void) { + + #ifdef AUDIO_ENABLE + _delay_ms(20); // gets rid of tick + PLAY_SONG(tone_startup); + #endif + + // // green led on + // DDRD |= (1<<5); + // PORTD &= ~(1<<5); + + // // orange led on + // DDRB |= (1<<0); + // PORTB &= ~(1<<0); + + matrix_init_user(); +}; + +void shutdown_user(void) { + #ifdef AUDIO_ENABLE + PLAY_SONG(tone_goodbye); + _delay_ms(150); + stop_all_notes(); + #endif +} |