* Fork from helix * Move rev2 to rev1 * Remove unused settings * Move split_util to outof rev * Setup KEYMAP for crkbd * Remove old image * Move keymaps directory and glcdfont.c * Remove AUDIO in keymap * Show keylog * Show keylogs * Show time log * Remove EISU/KANA * Use KEYMAP_kc * Remove iota_gfx_record_user wrapping * Remove unused settings for layer * Add keylogger.c * Fix uppercase letters to lower * Add timelogger.c * Default RGBLED_NUM = 27 * Remove unused setting * Add mode icon reader * Add matrix_write_ln * Add layer_state_reader * Move to lib directory * Rename functions * Add host_led_state_reader * Add logo_reader * Cleaning of iota_gfx_task * Fix bugs and add key defines * Remove unnecessary comments * Update crkbd readme * Move libs to lib directories * Rename KEYMAP to LAYOUT
		
			
				
	
	
		
			33 lines
		
	
	
		
			631 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
		
			631 B
		
	
	
	
		
			C
		
	
	
	
	
	
| #include "crkbd.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_SONG(tone_startup);
 | |
|     #endif
 | |
| 
 | |
| 	matrix_init_user();
 | |
| };
 | |
| 
 | |
| void shutdown_kb(void) {
 | |
|     #ifdef AUDIO_ENABLE
 | |
|         PLAY_SONG(tone_goodbye);
 | |
|       	_delay_ms(150);
 | |
|       	stop_all_notes();
 | |
|     #endif
 | |
| }
 |