diff options
| author | Danny Nguyen <danny@80pct.com> | 2017-05-29 15:37:19 -0400 |
|---|---|---|
| committer | Danny Nguyen <danny@80pct.com> | 2017-05-29 16:04:46 -0400 |
| commit | aeade1b1972c8d3d8f32dd21e1ae31e6c9e702db (patch) | |
| tree | a62c87b595c110615efd214666dd6f5b419d1c0e /keyboards/nyquist/rev2/rev2.c | |
| parent | 732a115b32a9c6aa529c53ef52a9689b5901411d (diff) | |
| download | firmware-aeade1b1972c8d3d8f32dd21e1ae31e6c9e702db.tar.gz firmware-aeade1b1972c8d3d8f32dd21e1ae31e6c9e702db.tar.bz2 firmware-aeade1b1972c8d3d8f32dd21e1ae31e6c9e702db.zip | |
Fork Let’s Split files
Diffstat (limited to 'keyboards/nyquist/rev2/rev2.c')
| -rw-r--r-- | keyboards/nyquist/rev2/rev2.c | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/keyboards/nyquist/rev2/rev2.c b/keyboards/nyquist/rev2/rev2.c new file mode 100644 index 000000000..20a4c6be1 --- /dev/null +++ b/keyboards/nyquist/rev2/rev2.c @@ -0,0 +1,39 @@ +#include "lets_split.h" + +#ifdef AUDIO_ENABLE + float tone_startup[][2] = SONG(STARTUP_SOUND); + float tone_goodbye[][2] = SONG(GOODBYE_SOUND); +#endif + +#ifdef SSD1306OLED +void led_set_kb(uint8_t usb_led) { + // put your keyboard LED indicator (ex: Caps Lock LED) toggling code here + led_set_user(usb_led); +} +#endif + +void matrix_init_kb(void) { + + #ifdef AUDIO_ENABLE + _delay_ms(20); // gets rid of tick + PLAY_NOTE_ARRAY(tone_startup, false, 0); + #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_NOTE_ARRAY(tone_goodbye, false, 0); + _delay_ms(150); + stop_all_notes(); + #endif +} |
