* Add revision 1 and revision 2 to ProjectKB Alice PCB * Swap SLEEP LED to no * Basic root rules.mk * Apply suggestions from code review * Update keyboards/projectkb/alice/rules.mk
		
			
				
	
	
		
			18 lines
		
	
	
		
			465 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			465 B
		
	
	
	
		
			C
		
	
	
	
	
	
#include "alice.h"
 | 
						|
 | 
						|
void matrix_init_board(void){
 | 
						|
    setPinOutput(INDICATOR_PIN_0);
 | 
						|
    setPinOutput(INDICATOR_PIN_1);
 | 
						|
    setPinOutput(INDICATOR_PIN_2);
 | 
						|
}
 | 
						|
 | 
						|
bool led_update_kb(led_t led_state) {
 | 
						|
    bool runDefault = led_update_user(led_state);
 | 
						|
    if (runDefault) {
 | 
						|
      writePin(INDICATOR_PIN_0, !led_state.num_lock);
 | 
						|
      writePin(INDICATOR_PIN_1, !led_state.caps_lock);
 | 
						|
      writePin(INDICATOR_PIN_2, !led_state.scroll_lock);
 | 
						|
    }
 | 
						|
    return runDefault;
 | 
						|
}
 |