summaryrefslogtreecommitdiff
path: root/keyboards/nyquist/rev2/rev2.c
diff options
context:
space:
mode:
authorDanny Nguyen2017-05-29 15:37:19 -0400
committerDanny Nguyen2017-05-29 16:04:46 -0400
commitaeade1b1972c8d3d8f32dd21e1ae31e6c9e702db (patch)
treea62c87b595c110615efd214666dd6f5b419d1c0e /keyboards/nyquist/rev2/rev2.c
parent732a115b32a9c6aa529c53ef52a9689b5901411d (diff)
Fork Let’s Split files
Diffstat (limited to 'keyboards/nyquist/rev2/rev2.c')
-rw-r--r--keyboards/nyquist/rev2/rev2.c39
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
+}