* add docs * core changes * update keyboards to new OLED * updated users to new OLED * update layouts to new OLED * fixup docs * drashna's suggestion * fix up docs * new keyboards with oled * core split changes * remaining keyboard files * Fix The Helix keyboards oled options * reflect develop Co-authored-by: Drashna Jaelre <drashna@live.com> Co-authored-by: mtei <2170248+mtei@users.noreply.github.com>
		
			
				
	
	
		
			31 lines
		
	
	
		
			519 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			519 B
		
	
	
	
		
			C
		
	
	
	
	
	
| #pragma once
 | |
| #include "ninjonas.h"
 | |
| 
 | |
| enum custom_keycodes {
 | |
|   // Layer Macros
 | |
|   QWERTY = SAFE_RANGE,
 | |
|   DVORAK,
 | |
|   COLEMAK,
 | |
|   // Custom Macros
 | |
|   M_PYNV,
 | |
|   M_SHFT,
 | |
|   M_MAKE,
 | |
|   M_MALL,
 | |
|   M_FLSH,
 | |
|   M_VRSN,
 | |
|   M_CODE,
 | |
|   M_TERM,
 | |
|   // Secret Macros
 | |
|   M_XXX1,
 | |
|   M_XXX2,
 | |
|   M_XXX3,
 | |
|   M_XXX4,
 | |
|   M_XXX5,
 | |
| };
 | |
| 
 | |
| bool process_record_secrets(uint16_t keycode, keyrecord_t *record);
 | |
| bool process_record_keymap(uint16_t keycode, keyrecord_t *record);
 | |
| #ifdef OLED_ENABLE
 | |
| bool process_record_oled(uint16_t keycode, keyrecord_t *record);
 | |
| #endif
 |