 bdd1f318c3
			
		
	
	
		bdd1f318c3
		
			
		
	
	
	
	
		
			
			Co-authored-by: Drashna Jaelre <drashna@live.com> Co-authored-by: mtei <2170248+mtei@users.noreply.github.com> Co-authored-by: Nick Brassel <nick@tzarc.org>
		
			
				
	
	
		
			25 lines
		
	
	
	
		
			532 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
	
		
			532 B
		
	
	
	
		
			C
		
	
	
	
	
	
| // Copyright 2022 Makoto Kurauchi (@MakotoKurauchi)
 | |
| // SPDX-License-Identifier: GPL-2.0-or-later
 | |
| 
 | |
| #include QMK_KEYBOARD_H
 | |
| #include "rgblite.h"
 | |
| 
 | |
| const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
 | |
|   [0] = LAYOUT_ortho_1x1(
 | |
|     RGB_HUI
 | |
|   )
 | |
| };
 | |
| bool process_record_user(uint16_t keycode, keyrecord_t *record) {
 | |
|   if (record->event.pressed) {
 | |
|     switch (keycode) {
 | |
|       case RGB_HUI:
 | |
|         rgblite_increase_hue();
 | |
|         break;
 | |
|     }
 | |
|   }
 | |
|   return true;
 | |
| }
 | |
| 
 | |
| void keyboard_post_init_user(void) {
 | |
|   rgblite_increase_hue();
 | |
| }
 |