[Keyboard] Add Terrazzo Keyboard (#10408)
* Ciao Terrazzo! * Keymap updates * Adding info json Cleaning up keymap files Readme updates with template * Coding style updates * Removing vscode files * PR feedback updates * biton32 -> get_highest_layer update Adding license headers
This commit is contained in:
		
							parent
							
								
									5d2deaca06
								
							
						
					
					
						commit
						d689f76110
					
				
					 18 changed files with 1560 additions and 0 deletions
				
			
		
							
								
								
									
										122
									
								
								keyboards/terrazzo/terrazzo.h
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										122
									
								
								keyboards/terrazzo/terrazzo.h
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,122 @@
 | 
			
		|||
/* Copyright 2020 ademey "MsMustard"
 | 
			
		||||
 *
 | 
			
		||||
 * This program is free software: you can redistribute it and/or modify
 | 
			
		||||
 * it under the terms of the GNU General Public License as published by
 | 
			
		||||
 * the Free Software Foundation, either version 2 of the License, or
 | 
			
		||||
 * (at your option) any later version.
 | 
			
		||||
 *
 | 
			
		||||
 * This program is distributed in the hope that it will be useful,
 | 
			
		||||
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
			
		||||
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 | 
			
		||||
 * GNU General Public License for more details.
 | 
			
		||||
 *
 | 
			
		||||
 * You should have received a copy of the GNU General Public License
 | 
			
		||||
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 | 
			
		||||
 */
 | 
			
		||||
 | 
			
		||||
#pragma once
 | 
			
		||||
 | 
			
		||||
#include "quantum.h"
 | 
			
		||||
 | 
			
		||||
/* Default staggered layout
 | 
			
		||||
   Bottom row: 1u 1.5u 2.25u 2.75u 1.5u 1u */
 | 
			
		||||
#define LAYOUT( \
 | 
			
		||||
    K00, K01, K02, K03, K04, K05, K70, K71, K72, K73, K74, K75, K65, \
 | 
			
		||||
    K10, K11, K12, K13, K14, K15, K60, K61, K62, K63, K64, K55, \
 | 
			
		||||
    K20, K21, K22, K23, K24, K25, K50, K51, K52, K53, K54, K45, \
 | 
			
		||||
    K30, K31, K32, K33, K40, K42, K43 \
 | 
			
		||||
){ \
 | 
			
		||||
    { K00, K01, K02, K03, K04, K05,},    \
 | 
			
		||||
    { K10, K11, K12, K13, K14, K15,},    \
 | 
			
		||||
    { K20, K21, K22, K23, K24, K25,},    \
 | 
			
		||||
    { K30, K31, K32, K33, KC_NO, KC_NO,},\
 | 
			
		||||
    { K40, KC_NO, K42, K43, KC_NO, K45,},\
 | 
			
		||||
    { K50, K51, K52, K53, K54, K55,},    \
 | 
			
		||||
    { K60, K61, K62, K63, K64, K65,},    \
 | 
			
		||||
    { K70, K71, K72, K73, K74, K75, }    \
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/* Default ortho layout
 | 
			
		||||
   Bottom row: 1u 1u 1u 2u 2u 1u 1u 1u */
 | 
			
		||||
#define LAYOUT_ortho( \
 | 
			
		||||
    K00, K01, K02, K03, K04, K05, K70, K71, K72, K73, K74, K75, K65, \
 | 
			
		||||
    K10, K11, K12, K13, K14, K15, K60, K61, K62, K63, K64, K54, K55, \
 | 
			
		||||
    K20, K21, K22, K23, K24, K25, K50, K51, K52, K53, K43, K44, K45, \
 | 
			
		||||
    K30,      K31, K32, K33, K34, K35, K40, K41, K42  \
 | 
			
		||||
){ \
 | 
			
		||||
    { K00, K01, K02, K03, K04, K05,},    \
 | 
			
		||||
    { K10, K11, K12, K13, K14, K15,},    \
 | 
			
		||||
    { K20, K21, K22, K23, K24, K25,},    \
 | 
			
		||||
    { K30, K31, K32, K33, K34, K35,},    \
 | 
			
		||||
    { K40, K41, K42, K43, K44, K45,},    \
 | 
			
		||||
    { K50, K51, K52, K53, K54, K55,},    \
 | 
			
		||||
    { K60, K61, K62, K63, K64, K65,},    \
 | 
			
		||||
    { K70, K71, K72, K73, K74, K75, },    \
 | 
			
		||||
    { KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, } \
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/* MIT ortho layout
 | 
			
		||||
   Bottom row: 1u 1u 1u 1u 2u 1u 1u 1u 1u */
 | 
			
		||||
#define LAYOUT_ortho_mit( \
 | 
			
		||||
    K00, K01, K02, K03, K04, K05, K70, K71, K72, K73, K74, K75, K65, \
 | 
			
		||||
    K10, K11, K12, K13, K14, K15, K60, K61, K62, K63, K64, K54, K55, \
 | 
			
		||||
    K20, K21, K22, K23, K24, K25, K50, K51, K52, K53, K43, K44, K45, \
 | 
			
		||||
    K30,      K31, K32, K33, K84,   K35,    K85, K40, K41, K42  \
 | 
			
		||||
){ \
 | 
			
		||||
    { K00, K01, K02, K03, K04, K05,},    \
 | 
			
		||||
    { K10, K11, K12, K13, K14, K15,},    \
 | 
			
		||||
    { K20, K21, K22, K23, K24, K25,},    \
 | 
			
		||||
    { K30, K31, K32, K33, KC_NO, K35,},    \
 | 
			
		||||
    { K40, K41, K42, K43, K44, K45,},    \
 | 
			
		||||
    { K50, K51, K52, K53, K54, K55,},    \
 | 
			
		||||
    { K60, K61, K62, K63, K64, K65,},    \
 | 
			
		||||
    { K70, K71, K72, K73, K74, K75, },    \
 | 
			
		||||
    { KC_NO, KC_NO, KC_NO, KC_NO, K84, K85, } \
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/* All 1u ortho layout
 | 
			
		||||
   Bottom row: 1u 1u 1u 1u 1u 1u 1u 1u 1u 1u */
 | 
			
		||||
#define LAYOUT_ortho_all( \
 | 
			
		||||
    K00, K01, K02, K03, K04, K05, K70, K71, K72, K73, K74, K75, K65, \
 | 
			
		||||
    K10, K11, K12, K13, K14, K15, K60, K61, K62, K63, K64, K54, K55, \
 | 
			
		||||
    K20, K21, K22, K23, K24, K25, K50, K51, K52, K53, K43, K44, K45, \
 | 
			
		||||
    K30,      K31, K32, K33, K84, K34, K35, K85, K40, K41, K42  \
 | 
			
		||||
){ \
 | 
			
		||||
    { K00, K01, K02, K03, K04, K05,},    \
 | 
			
		||||
    { K10, K11, K12, K13, K14, K15,},    \
 | 
			
		||||
    { K20, K21, K22, K23, K24, K25,},    \
 | 
			
		||||
    { K30, K31, K32, K33, K34, K35,},    \
 | 
			
		||||
    { K40, K41, K42, K43, K44, K45,},    \
 | 
			
		||||
    { K50, K51, K52, K53, K54, K55,},    \
 | 
			
		||||
    { K60, K61, K62, K63, K64, K65,},    \
 | 
			
		||||
    { K70, K71, K72, K73, K74, K75, },    \
 | 
			
		||||
    { KC_NO, KC_NO, KC_NO, KC_NO, K84, K85, } \
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
enum terrazzo_matrix_effects {
 | 
			
		||||
    TERRAZZO_NONE = 0,
 | 
			
		||||
// --------------------------------------
 | 
			
		||||
// -----Begin led effect enum macros-----
 | 
			
		||||
#define TERRAZZO_EFFECT(name, ...) TERRAZZO_EFFECT_##name,
 | 
			
		||||
#include "terrazzo_effects/terrazzo_effects.inc"
 | 
			
		||||
#undef TERRAZZO_EFFECT
 | 
			
		||||
    // --------------------------------------
 | 
			
		||||
    // -----End led effect enum macros-------
 | 
			
		||||
    // All new effects go above this line
 | 
			
		||||
    TERRAZZO_EFFECT_MAX
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
enum terrazzo_keycodes {
 | 
			
		||||
    TZ_NXT = SAFE_RANGE,
 | 
			
		||||
    TZ_PRV,
 | 
			
		||||
    TZ_OFF
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
void terrazzo_render(void);
 | 
			
		||||
void terrazzo_set_pixel(uint8_t x, uint8_t y, uint8_t value);
 | 
			
		||||
void terrazzo_draw_at(uint8_t x, uint8_t y, uint8_t width, uint8_t height, uint8_t image[]);
 | 
			
		||||
void terrazzo_scroll_pixel(bool clockwise);
 | 
			
		||||
void terrazzo_step_mode(void);
 | 
			
		||||
void terrazzo_step_mode_reverse(void);
 | 
			
		||||
void terrazzo_mode_off(void);
 | 
			
		||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue