 7e8dc2e570
			
		
	
	
		7e8dc2e570
		
			
		
	
	
	
	
		
			
			Co-authored-by: Joel Challis <git@zvecr.com> Co-authored-by: Drashna Jaelre <drashna@live.com>
		
			
				
	
	
		
			9 lines
		
	
	
	
		
			267 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
	
		
			267 B
		
	
	
	
		
			C
		
	
	
	
	
	
| #pragma once
 | |
| 
 | |
| #include "ws2812.h"
 | |
| #include "rgblight_list.h"
 | |
| 
 | |
| static inline void rgblight_setrgb(uint8_t _r, uint8_t _g, uint8_t _b) {
 | |
|     LED_TYPE leds[RGBLED_NUM] = {{.r = _r, .g = _g, .b = _b}, {.r = _r, .g = _g, .b = _b}};
 | |
|     ws2812_setleds(leds, RGBLED_NUM);
 | |
| }
 |