 4cdb86c730
			
		
	
	
		4cdb86c730
		
	
	
	
	
		
			
			* Move Sol, Zen, & Zygomorph keyboards to RGBKB folder * Updated default keymaps * Fixing more areas due too folder moves * Fixing Zen layer numbers * Fixing zygomorph layer comments * Fixing Colmak comments * Fixing Sol Colmak readme * Macro alignment * Zen rev2 configuration json * Fixing sol ifdef * Fixing Sol info.json
		
			
				
	
	
		
			22 lines
		
	
	
	
		
			387 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
	
		
			387 B
		
	
	
	
		
			C
		
	
	
	
	
	
| #include "rev1.h"
 | |
| 
 | |
| #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) {
 | |
| 
 | |
|     // // green led on
 | |
|     // DDRD |= (1<<5);
 | |
|     // PORTD &= ~(1<<5);
 | |
| 
 | |
|     // // orange led on
 | |
|     // DDRB |= (1<<0);
 | |
|     // PORTB &= ~(1<<0);
 | |
| 
 | |
| 	matrix_init_user();
 | |
| };
 | |
| 
 |