summaryrefslogtreecommitdiff
path: root/keyboards/nyquist/rev1/rev1.c
diff options
context:
space:
mode:
authorDanny Nguyen <danny@80pct.com>2017-05-29 15:37:19 -0400
committerDanny Nguyen <danny@80pct.com>2017-05-29 16:04:46 -0400
commitaeade1b1972c8d3d8f32dd21e1ae31e6c9e702db (patch)
treea62c87b595c110615efd214666dd6f5b419d1c0e /keyboards/nyquist/rev1/rev1.c
parent732a115b32a9c6aa529c53ef52a9689b5901411d (diff)
Fork Let’s Split files
Diffstat (limited to 'keyboards/nyquist/rev1/rev1.c')
-rw-r--r--keyboards/nyquist/rev1/rev1.c32
1 files changed, 32 insertions, 0 deletions
diff --git a/keyboards/nyquist/rev1/rev1.c b/keyboards/nyquist/rev1/rev1.c
new file mode 100644
index 0000000000..c505d3a6e3
--- /dev/null
+++ b/keyboards/nyquist/rev1/rev1.c
@@ -0,0 +1,32 @@
+#include "lets_split.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_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
+}