mirror of
				https://github.com/mfulz/qmk_firmware.git
				synced 2025-10-31 05:12:33 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			262 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			262 B
		
	
	
	
		
			C
		
	
	
	
	
	
| /**
 | |
|  * Backlighting code for PS2AVRGB boards (ATMEGA32A)
 | |
|  * Kenneth A. (github.com/krusli | krusli.me)
 | |
|  */
 | |
| 
 | |
| #pragma once
 | |
| 
 | |
| #include <avr/pgmspace.h>
 | |
| void b_led_init_ports(void);
 | |
| void b_led_set(uint8_t level);
 | |
| void b_led_task(void);
 | |
| void setPWM(uint16_t xValue);
 | |
| 
 | 
