 13bb6b4b7f
			
		
	
	
		13bb6b4b7f
		
	
	
	
	
		
			
			* redoes matrix pins, abstracts backlight code for B5,6,7 * slimming down keyboard stuff, backlight breathing implemented * don't call backlight init when no pin * cleans up user/kb/quantum calls, keyboard files * fix pvc atomic * replaces CHANNEL with correct var in breathing * removes .hexs, updates readmes, updates template * cleans-up clueboards, readmes to lowercase * updates readme
		
			
				
	
	
		
			10 lines
		
	
	
		
			No EOL
		
	
	
		
			142 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			No EOL
		
	
	
		
			142 B
		
	
	
	
		
			C
		
	
	
	
	
	
| #include "preonic.h"
 | |
| 
 | |
| void matrix_init_kb(void) {
 | |
| 
 | |
|     // Turn status LED on
 | |
|     DDRE |= (1<<6);
 | |
|     PORTE |= (1<<6);
 | |
| 
 | |
| 	matrix_init_user();
 | |
| }; |