mirror of
				https://github.com/mfulz/qmk_firmware.git
				synced 2025-11-03 23:02:34 +01:00 
			
		
		
		
	* 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
		
			
				
	
	
		
			9 lines
		
	
	
		
			130 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			130 B
		
	
	
	
		
			C
		
	
	
	
	
	
#include "planck.h"
 | 
						|
 | 
						|
void matrix_init_kb(void) {
 | 
						|
	// Turn status LED on
 | 
						|
	DDRE |= (1<<6);
 | 
						|
	PORTE |= (1<<6);
 | 
						|
 | 
						|
	matrix_init_user();
 | 
						|
} |