Merge remote-tracking branch 'origin/master' into develop
This commit is contained in:
		
						commit
						408bb469bb
					
				
					 13 changed files with 631 additions and 0 deletions
				
			
		
							
								
								
									
										37
									
								
								keyboards/keebio/convolution/convolution.c
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										37
									
								
								keyboards/keebio/convolution/convolution.c
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,37 @@
 | 
			
		|||
/* Copyright 2022 Danny Nguyen <danny@keeb.io>
 | 
			
		||||
 | 
			
		||||
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/>.
 | 
			
		||||
*/
 | 
			
		||||
 | 
			
		||||
#include "convolution.h"
 | 
			
		||||
 | 
			
		||||
#ifdef ENCODER_ENABLE
 | 
			
		||||
bool encoder_update_kb(uint8_t index, bool clockwise) {
 | 
			
		||||
    if (!encoder_update_user(index, clockwise)) { return false; }
 | 
			
		||||
    if (index == 0) {
 | 
			
		||||
        if (clockwise) {
 | 
			
		||||
            tap_code(KC_PGDN);
 | 
			
		||||
        } else {
 | 
			
		||||
            tap_code(KC_PGUP);
 | 
			
		||||
        }
 | 
			
		||||
    } else if (index == 1) {
 | 
			
		||||
        if (clockwise) {
 | 
			
		||||
            tap_code(KC_VOLU);
 | 
			
		||||
        } else {
 | 
			
		||||
            tap_code(KC_VOLD);
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
    return true;
 | 
			
		||||
}
 | 
			
		||||
#endif
 | 
			
		||||
							
								
								
									
										22
									
								
								keyboards/keebio/convolution/convolution.h
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										22
									
								
								keyboards/keebio/convolution/convolution.h
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,22 @@
 | 
			
		|||
/* Copyright 2022 Danny Nguyen <danny@keeb.io>
 | 
			
		||||
 | 
			
		||||
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"
 | 
			
		||||
 | 
			
		||||
#ifdef KEYBOARD_keebio_convolution_rev1
 | 
			
		||||
    #include "rev1.h"
 | 
			
		||||
#endif
 | 
			
		||||
							
								
								
									
										278
									
								
								keyboards/keebio/convolution/info.json
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										278
									
								
								keyboards/keebio/convolution/info.json
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,278 @@
 | 
			
		|||
{
 | 
			
		||||
    "manufacturer": "Keebio",
 | 
			
		||||
    "url": "https://keeb.io",
 | 
			
		||||
    "maintainer": "nooges",
 | 
			
		||||
    "usb": {
 | 
			
		||||
        "vid": "0xCB10"
 | 
			
		||||
    },
 | 
			
		||||
    "features": {
 | 
			
		||||
        "command": false,
 | 
			
		||||
        "console": true,
 | 
			
		||||
        "extrakey": true,
 | 
			
		||||
        "mousekey": false,
 | 
			
		||||
        "nkro": false,
 | 
			
		||||
        "unicode": false,
 | 
			
		||||
        "backlight": false
 | 
			
		||||
    },
 | 
			
		||||
    "layout_aliases": {"LAYOUT": "LAYOUT_all"},
 | 
			
		||||
    "layouts": {
 | 
			
		||||
        "LAYOUT_65xt": {
 | 
			
		||||
            "layout": [
 | 
			
		||||
                {"x": 0, "y": 0},
 | 
			
		||||
                {"x": 1, "y": 0},
 | 
			
		||||
                {"x": 2.25, "y": 0},
 | 
			
		||||
                {"x": 3.25, "y": 0},
 | 
			
		||||
                {"x": 4.25, "y": 0},
 | 
			
		||||
                {"x": 5.25, "y": 0},
 | 
			
		||||
                {"x": 6.25, "y": 0},
 | 
			
		||||
                {"x": 7.25, "y": 0},
 | 
			
		||||
                {"x": 8.25, "y": 0},
 | 
			
		||||
                {"x": 9.25, "y": 0},
 | 
			
		||||
                {"x": 10.25, "y": 0},
 | 
			
		||||
                {"x": 11.25, "y": 0},
 | 
			
		||||
                {"x": 12.25, "y": 0},
 | 
			
		||||
                {"x": 13.25, "y": 0},
 | 
			
		||||
                {"x": 14.25, "y": 0},
 | 
			
		||||
                {"x": 15.25, "y": 0},
 | 
			
		||||
                {"x": 16.25, "y": 0},
 | 
			
		||||
                {"x": 17.25, "y": 0},
 | 
			
		||||
                {"x": 0, "y": 1},
 | 
			
		||||
                {"x": 1, "y": 1},
 | 
			
		||||
                {"x": 2.25, "y": 1, "w": 1.5},
 | 
			
		||||
                {"x": 3.75, "y": 1},
 | 
			
		||||
                {"x": 4.75, "y": 1},
 | 
			
		||||
                {"x": 5.75, "y": 1},
 | 
			
		||||
                {"x": 6.75, "y": 1},
 | 
			
		||||
                {"x": 7.75, "y": 1},
 | 
			
		||||
                {"x": 8.75, "y": 1},
 | 
			
		||||
                {"x": 9.75, "y": 1},
 | 
			
		||||
                {"x": 10.75, "y": 1},
 | 
			
		||||
                {"x": 11.75, "y": 1},
 | 
			
		||||
                {"x": 12.75, "y": 1},
 | 
			
		||||
                {"x": 13.75, "y": 1},
 | 
			
		||||
                {"x": 14.75, "y": 1},
 | 
			
		||||
                {"x": 15.75, "y": 1, "w": 1.5},
 | 
			
		||||
                {"x": 17.25, "y": 1},
 | 
			
		||||
                {"x": 0, "y": 2},
 | 
			
		||||
                {"x": 1, "y": 2},
 | 
			
		||||
                {"x": 2.25, "y": 2, "w": 1.75},
 | 
			
		||||
                {"x": 4, "y": 2},
 | 
			
		||||
                {"x": 5, "y": 2},
 | 
			
		||||
                {"x": 6, "y": 2},
 | 
			
		||||
                {"x": 7, "y": 2},
 | 
			
		||||
                {"x": 8, "y": 2},
 | 
			
		||||
                {"x": 9, "y": 2},
 | 
			
		||||
                {"x": 10, "y": 2},
 | 
			
		||||
                {"x": 11, "y": 2},
 | 
			
		||||
                {"x": 12, "y": 2},
 | 
			
		||||
                {"x": 13, "y": 2},
 | 
			
		||||
                {"x": 14, "y": 2},
 | 
			
		||||
                {"x": 15, "y": 2, "w": 2.25},
 | 
			
		||||
                {"x": 17.25, "y": 2},
 | 
			
		||||
                {"x": 0, "y": 3},
 | 
			
		||||
                {"x": 1, "y": 3},
 | 
			
		||||
                {"x": 2.25, "y": 3, "w": 2.25},
 | 
			
		||||
                {"x": 4.5, "y": 3},
 | 
			
		||||
                {"x": 5.5, "y": 3},
 | 
			
		||||
                {"x": 6.5, "y": 3},
 | 
			
		||||
                {"x": 7.5, "y": 3},
 | 
			
		||||
                {"x": 8.5, "y": 3},
 | 
			
		||||
                {"x": 9.5, "y": 3},
 | 
			
		||||
                {"x": 10.5, "y": 3},
 | 
			
		||||
                {"x": 11.5, "y": 3},
 | 
			
		||||
                {"x": 12.5, "y": 3},
 | 
			
		||||
                {"x": 13.5, "y": 3},
 | 
			
		||||
                {"x": 14.5, "y": 3, "w": 1.75},
 | 
			
		||||
                {"x": 16.25, "y": 3},
 | 
			
		||||
                {"x": 17.25, "y": 3},
 | 
			
		||||
                {"x": 0, "y": 4},
 | 
			
		||||
                {"x": 1, "y": 4},
 | 
			
		||||
                {"x": 2.25, "y": 4, "w": 1.25},
 | 
			
		||||
                {"x": 3.5, "y": 4, "w": 1.25},
 | 
			
		||||
                {"x": 4.75, "y": 4, "w": 1.25},
 | 
			
		||||
                {"x": 6, "y": 4, "w": 1.25},
 | 
			
		||||
                {"x": 7.25, "y": 4, "w": 2.25},
 | 
			
		||||
                {"x": 9.5, "y": 4, "w": 2.75},
 | 
			
		||||
                {"x": 12.25, "y": 4},
 | 
			
		||||
                {"x": 13.25, "y": 4},
 | 
			
		||||
                {"x": 14.25, "y": 4},
 | 
			
		||||
                {"x": 15.25, "y": 4},
 | 
			
		||||
                {"x": 16.25, "y": 4},
 | 
			
		||||
                {"x": 17.25, "y": 4}
 | 
			
		||||
            ]
 | 
			
		||||
        },
 | 
			
		||||
        "LAYOUT_65xt_iso": {
 | 
			
		||||
            "layout": [
 | 
			
		||||
                {"x": 0, "y": 0},
 | 
			
		||||
                {"x": 1, "y": 0},
 | 
			
		||||
                {"x": 2.25, "y": 0},
 | 
			
		||||
                {"x": 3.25, "y": 0},
 | 
			
		||||
                {"x": 4.25, "y": 0},
 | 
			
		||||
                {"x": 5.25, "y": 0},
 | 
			
		||||
                {"x": 6.25, "y": 0},
 | 
			
		||||
                {"x": 7.25, "y": 0},
 | 
			
		||||
                {"x": 8.25, "y": 0},
 | 
			
		||||
                {"x": 9.25, "y": 0},
 | 
			
		||||
                {"x": 10.25, "y": 0},
 | 
			
		||||
                {"x": 11.25, "y": 0},
 | 
			
		||||
                {"x": 12.25, "y": 0},
 | 
			
		||||
                {"x": 13.25, "y": 0},
 | 
			
		||||
                {"x": 14.25, "y": 0},
 | 
			
		||||
                {"x": 15.25, "y": 0},
 | 
			
		||||
                {"x": 16.25, "y": 0},
 | 
			
		||||
                {"x": 17.25, "y": 0},
 | 
			
		||||
                {"x": 0, "y": 1},
 | 
			
		||||
                {"x": 1, "y": 1},
 | 
			
		||||
                {"x": 2.25, "y": 1, "w": 1.5},
 | 
			
		||||
                {"x": 3.75, "y": 1},
 | 
			
		||||
                {"x": 4.75, "y": 1},
 | 
			
		||||
                {"x": 5.75, "y": 1},
 | 
			
		||||
                {"x": 6.75, "y": 1},
 | 
			
		||||
                {"x": 7.75, "y": 1},
 | 
			
		||||
                {"x": 8.75, "y": 1},
 | 
			
		||||
                {"x": 9.75, "y": 1},
 | 
			
		||||
                {"x": 10.75, "y": 1},
 | 
			
		||||
                {"x": 11.75, "y": 1},
 | 
			
		||||
                {"x": 12.75, "y": 1},
 | 
			
		||||
                {"x": 13.75, "y": 1},
 | 
			
		||||
                {"x": 14.75, "y": 1},
 | 
			
		||||
                {"x": 17.25, "y": 1},
 | 
			
		||||
                {"x": 0, "y": 2},
 | 
			
		||||
                {"x": 1, "y": 2},
 | 
			
		||||
                {"x": 2.25, "y": 2, "w": 1.75},
 | 
			
		||||
                {"x": 4, "y": 2},
 | 
			
		||||
                {"x": 5, "y": 2},
 | 
			
		||||
                {"x": 6, "y": 2},
 | 
			
		||||
                {"x": 7, "y": 2},
 | 
			
		||||
                {"x": 8, "y": 2},
 | 
			
		||||
                {"x": 9, "y": 2},
 | 
			
		||||
                {"x": 10, "y": 2},
 | 
			
		||||
                {"x": 11, "y": 2},
 | 
			
		||||
                {"x": 12, "y": 2},
 | 
			
		||||
                {"x": 13, "y": 2},
 | 
			
		||||
                {"x": 14, "y": 2},
 | 
			
		||||
                {"x": 15, "y": 2},
 | 
			
		||||
                {"x": 16, "y": 1, "w": 1.25, "h": 2},
 | 
			
		||||
                {"x": 17.25, "y": 2},
 | 
			
		||||
                {"x": 0, "y": 3},
 | 
			
		||||
                {"x": 1, "y": 3},
 | 
			
		||||
                {"x": 2.25, "y": 3, "w": 1.25},
 | 
			
		||||
                {"x": 3.5, "y": 3},
 | 
			
		||||
                {"x": 4.5, "y": 3},
 | 
			
		||||
                {"x": 5.5, "y": 3},
 | 
			
		||||
                {"x": 6.5, "y": 3},
 | 
			
		||||
                {"x": 7.5, "y": 3},
 | 
			
		||||
                {"x": 8.5, "y": 3},
 | 
			
		||||
                {"x": 9.5, "y": 3},
 | 
			
		||||
                {"x": 10.5, "y": 3},
 | 
			
		||||
                {"x": 11.5, "y": 3},
 | 
			
		||||
                {"x": 12.5, "y": 3},
 | 
			
		||||
                {"x": 13.5, "y": 3},
 | 
			
		||||
                {"x": 14.5, "y": 3, "w": 1.75},
 | 
			
		||||
                {"x": 16.25, "y": 3},
 | 
			
		||||
                {"x": 17.25, "y": 3},
 | 
			
		||||
                {"x": 0, "y": 4},
 | 
			
		||||
                {"x": 1, "y": 4},
 | 
			
		||||
                {"x": 2.25, "y": 4, "w": 1.25},
 | 
			
		||||
                {"x": 3.5, "y": 4, "w": 1.25},
 | 
			
		||||
                {"x": 4.75, "y": 4, "w": 1.25},
 | 
			
		||||
                {"x": 6, "y": 4, "w": 1.25},
 | 
			
		||||
                {"x": 7.25, "y": 4, "w": 2.25},
 | 
			
		||||
                {"x": 9.5, "y": 4, "w": 2.75},
 | 
			
		||||
                {"x": 12.25, "y": 4},
 | 
			
		||||
                {"x": 13.25, "y": 4},
 | 
			
		||||
                {"x": 14.25, "y": 4},
 | 
			
		||||
                {"x": 15.25, "y": 4},
 | 
			
		||||
                {"x": 16.25, "y": 4},
 | 
			
		||||
                {"x": 17.25, "y": 4}
 | 
			
		||||
            ]
 | 
			
		||||
        },
 | 
			
		||||
        "LAYOUT_all": {
 | 
			
		||||
            "layout": [
 | 
			
		||||
                {"x": 0, "y": 0},
 | 
			
		||||
                {"x": 1, "y": 0},
 | 
			
		||||
                {"x": 2.25, "y": 0},
 | 
			
		||||
                {"x": 3.25, "y": 0},
 | 
			
		||||
                {"x": 4.25, "y": 0},
 | 
			
		||||
                {"x": 5.25, "y": 0},
 | 
			
		||||
                {"x": 6.25, "y": 0},
 | 
			
		||||
                {"x": 7.25, "y": 0},
 | 
			
		||||
                {"x": 8.25, "y": 0},
 | 
			
		||||
                {"x": 9.25, "y": 0},
 | 
			
		||||
                {"x": 10.25, "y": 0},
 | 
			
		||||
                {"x": 11.25, "y": 0},
 | 
			
		||||
                {"x": 12.25, "y": 0},
 | 
			
		||||
                {"x": 13.25, "y": 0},
 | 
			
		||||
                {"x": 14.25, "y": 0},
 | 
			
		||||
                {"x": 15.25, "y": 0},
 | 
			
		||||
                {"x": 16.25, "y": 0},
 | 
			
		||||
                {"x": 17.25, "y": 0},
 | 
			
		||||
                {"x": 0, "y": 1},
 | 
			
		||||
                {"x": 1, "y": 1},
 | 
			
		||||
                {"x": 2.25, "y": 1, "w": 1.5},
 | 
			
		||||
                {"x": 3.75, "y": 1},
 | 
			
		||||
                {"x": 4.75, "y": 1},
 | 
			
		||||
                {"x": 5.75, "y": 1},
 | 
			
		||||
                {"x": 6.75, "y": 1},
 | 
			
		||||
                {"x": 7.75, "y": 1},
 | 
			
		||||
                {"x": 8.75, "y": 1},
 | 
			
		||||
                {"x": 9.75, "y": 1},
 | 
			
		||||
                {"x": 10.75, "y": 1},
 | 
			
		||||
                {"x": 11.75, "y": 1},
 | 
			
		||||
                {"x": 12.75, "y": 1},
 | 
			
		||||
                {"x": 13.75, "y": 1},
 | 
			
		||||
                {"x": 14.75, "y": 1},
 | 
			
		||||
                {"x": 15.75, "y": 1, "w": 1.5},
 | 
			
		||||
                {"x": 17.25, "y": 1},
 | 
			
		||||
                {"x": 0, "y": 2},
 | 
			
		||||
                {"x": 1, "y": 2},
 | 
			
		||||
                {"x": 2.25, "y": 2, "w": 1.75},
 | 
			
		||||
                {"x": 4, "y": 2},
 | 
			
		||||
                {"x": 5, "y": 2},
 | 
			
		||||
                {"x": 6, "y": 2},
 | 
			
		||||
                {"x": 7, "y": 2},
 | 
			
		||||
                {"x": 8, "y": 2},
 | 
			
		||||
                {"x": 9, "y": 2},
 | 
			
		||||
                {"x": 10, "y": 2},
 | 
			
		||||
                {"x": 11, "y": 2},
 | 
			
		||||
                {"x": 12, "y": 2},
 | 
			
		||||
                {"x": 13, "y": 2},
 | 
			
		||||
                {"x": 14, "y": 2},
 | 
			
		||||
                {"x": 15, "y": 2},
 | 
			
		||||
                {"x": 16, "y": 2, "w": 1.25},
 | 
			
		||||
                {"x": 17.25, "y": 2},
 | 
			
		||||
                {"x": 0, "y": 3},
 | 
			
		||||
                {"x": 1, "y": 3},
 | 
			
		||||
                {"x": 2.25, "y": 3, "w": 1.25},
 | 
			
		||||
                {"x": 3.5, "y": 3},
 | 
			
		||||
                {"x": 4.5, "y": 3},
 | 
			
		||||
                {"x": 5.5, "y": 3},
 | 
			
		||||
                {"x": 6.5, "y": 3},
 | 
			
		||||
                {"x": 7.5, "y": 3},
 | 
			
		||||
                {"x": 8.5, "y": 3},
 | 
			
		||||
                {"x": 9.5, "y": 3},
 | 
			
		||||
                {"x": 10.5, "y": 3},
 | 
			
		||||
                {"x": 11.5, "y": 3},
 | 
			
		||||
                {"x": 12.5, "y": 3},
 | 
			
		||||
                {"x": 13.5, "y": 3},
 | 
			
		||||
                {"x": 14.5, "y": 3, "w": 1.75},
 | 
			
		||||
                {"x": 16.25, "y": 3},
 | 
			
		||||
                {"x": 17.25, "y": 3},
 | 
			
		||||
                {"x": 0, "y": 4},
 | 
			
		||||
                {"x": 1, "y": 4},
 | 
			
		||||
                {"x": 2.25, "y": 4, "w": 1.25},
 | 
			
		||||
                {"x": 3.5, "y": 4, "w": 1.25},
 | 
			
		||||
                {"x": 4.75, "y": 4, "w": 1.25},
 | 
			
		||||
                {"x": 6, "y": 4, "w": 1.25},
 | 
			
		||||
                {"x": 7.25, "y": 4, "w": 2.25},
 | 
			
		||||
                {"x": 9.5, "y": 4, "w": 2.75},
 | 
			
		||||
                {"x": 12.25, "y": 4},
 | 
			
		||||
                {"x": 13.25, "y": 4},
 | 
			
		||||
                {"x": 14.25, "y": 4},
 | 
			
		||||
                {"x": 15.25, "y": 4},
 | 
			
		||||
                {"x": 16.25, "y": 4},
 | 
			
		||||
                {"x": 17.25, "y": 4}
 | 
			
		||||
            ]
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										39
									
								
								keyboards/keebio/convolution/keymaps/default/keymap.c
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										39
									
								
								keyboards/keebio/convolution/keymaps/default/keymap.c
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,39 @@
 | 
			
		|||
/* Copyright 2022 Danny Nguyen <danny@keeb.io>
 | 
			
		||||
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/>.
 | 
			
		||||
*/
 | 
			
		||||
#include QMK_KEYBOARD_H
 | 
			
		||||
 | 
			
		||||
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
 | 
			
		||||
  [0] = LAYOUT_65xt(
 | 
			
		||||
    KC_F1,   KC_F2,   KC_GRV,  KC_1,    KC_2,    KC_3,    KC_4,    KC_5,    KC_6,    KC_7,    KC_8,    KC_9,    KC_0,    KC_MINS, KC_EQL,  KC_BSPC, KC_DEL, KC_HOME,
 | 
			
		||||
    KC_F3,   KC_F4,   KC_TAB,  KC_Q,    KC_W,    KC_E,    KC_R,    KC_T,    KC_Y,    KC_U,    KC_I,    KC_O,    KC_P,    KC_LBRC, KC_RBRC, KC_BSLS, KC_END,
 | 
			
		||||
    KC_F5,   KC_F6,   KC_CAPS, KC_A,    KC_S,    KC_D,    KC_F,    KC_G,    KC_H,    KC_J,    KC_K,    KC_L,    KC_SCLN, KC_QUOT,          KC_ENT,  KC_PGUP,
 | 
			
		||||
    KC_F7,   KC_F8,   KC_LSFT,          KC_Z,    KC_X,    KC_C,    KC_V,    KC_B,    KC_N,    KC_M,    KC_COMM, KC_DOT,  KC_SLSH, KC_RSFT, KC_UP,   KC_PGDN,
 | 
			
		||||
    KC_F9,   KC_F10,  KC_LCTL, KC_LGUI, KC_LALT, MO(1),   KC_SPC,                             KC_SPC,  KC_RALT, KC_RGUI, KC_RCTL, KC_LEFT, KC_DOWN, KC_RGHT
 | 
			
		||||
  ),
 | 
			
		||||
 | 
			
		||||
  [1] = LAYOUT_65xt(
 | 
			
		||||
    RGB_HUI, RGB_HUD, QK_GESC, KC_F1,   KC_F2,   KC_F3,   KC_F4,   KC_F5,   KC_F6,   KC_F7,   KC_F8,   KC_F9,   KC_F10,  KC_F11,  KC_F12,  _______, _______, _______,
 | 
			
		||||
    RGB_SAI, RGB_SAD, RGB_TOG, RGB_MOD, _______, KC_UP,   QK_BOOT, EE_CLR,  _______, _______, _______, _______, _______, _______, _______, _______, _______,
 | 
			
		||||
    RGB_VAI, RGB_VAD, _______, _______, KC_LEFT, KC_DOWN, KC_RGHT, _______, _______, _______, _______, _______, _______, _______,          _______, _______,
 | 
			
		||||
    _______, _______, _______,          _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
 | 
			
		||||
    _______, _______, _______, _______, _______, _______, _______,                            _______, _______, _______, _______, _______, _______, _______
 | 
			
		||||
  ),
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
#ifdef ENCODER_MAP_ENABLE
 | 
			
		||||
const uint16_t PROGMEM encoder_map[][NUM_ENCODERS][2] = {
 | 
			
		||||
	[0] = { ENCODER_CCW_CW(KC_VOLU, KC_VOLD), ENCODER_CCW_CW(KC_PGUP, KC_PGDN) },
 | 
			
		||||
	[1] = { ENCODER_CCW_CW(RGB_MOD, RGB_RMOD), ENCODER_CCW_CW(KC_MNXT, KC_MPRV) },
 | 
			
		||||
};
 | 
			
		||||
#endif
 | 
			
		||||
							
								
								
									
										1
									
								
								keyboards/keebio/convolution/keymaps/default/rules.mk
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								keyboards/keebio/convolution/keymaps/default/rules.mk
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1 @@
 | 
			
		|||
ENCODER_MAP_ENABLE = yes
 | 
			
		||||
							
								
								
									
										56
									
								
								keyboards/keebio/convolution/keymaps/via/keymap.c
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										56
									
								
								keyboards/keebio/convolution/keymaps/via/keymap.c
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,56 @@
 | 
			
		|||
/* Copyright 2022 Danny Nguyen <danny@keeb.io>
 | 
			
		||||
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/>.
 | 
			
		||||
*/
 | 
			
		||||
#include QMK_KEYBOARD_H
 | 
			
		||||
 | 
			
		||||
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
 | 
			
		||||
  [0] = LAYOUT_all(
 | 
			
		||||
    KC_F1,   KC_F2,   KC_GRV,  KC_1,    KC_2,    KC_3,    KC_4,    KC_5,    KC_6,    KC_7,    KC_8,    KC_9,    KC_0,    KC_MINS, KC_EQL,  KC_BSPC, KC_DEL,  KC_HOME,
 | 
			
		||||
    KC_F3,   KC_F4,   KC_TAB,  KC_Q,    KC_W,    KC_E,    KC_R,    KC_T,    KC_Y,    KC_U,    KC_I,    KC_O,    KC_P,    KC_LBRC, KC_RBRC, KC_BSLS, KC_END,
 | 
			
		||||
    KC_F5,   KC_F6,   KC_CAPS, KC_A,    KC_S,    KC_D,    KC_F,    KC_G,    KC_H,    KC_J,    KC_K,    KC_L,    KC_SCLN, KC_QUOT, KC_NUHS, KC_ENT,  KC_PGUP,
 | 
			
		||||
    KC_F7,   KC_F8,   KC_LSFT, KC_NUBS, KC_Z,    KC_X,    KC_C,    KC_V,    KC_B,    KC_N,    KC_M,    KC_COMM, KC_DOT,  KC_SLSH, KC_RSFT, KC_UP,   KC_PGDN,
 | 
			
		||||
    KC_F9,   KC_F10,  KC_LCTL, KC_LGUI, KC_LALT, MO(1),   KC_SPC,                             KC_SPC,  KC_RALT, KC_RGUI, KC_RCTL, KC_LEFT, KC_DOWN, KC_RGHT
 | 
			
		||||
  ),
 | 
			
		||||
 | 
			
		||||
  [1] = LAYOUT_all(
 | 
			
		||||
    RGB_HUI, RGB_HUD, QK_GESC, KC_F1,   KC_F2,   KC_F3,   KC_F4,   KC_F5,   KC_F6,   KC_F7,   KC_F8,   KC_F9,   KC_F10,  KC_F11,  KC_F12,  _______, _______, _______,
 | 
			
		||||
    RGB_SAI, RGB_SAD, RGB_TOG, RGB_MOD, _______, KC_UP,   QK_BOOT, EE_CLR,  _______, _______, _______, _______, _______, _______, _______, _______, _______,
 | 
			
		||||
    RGB_VAI, RGB_VAD, _______, _______, KC_LEFT, KC_DOWN, KC_RGHT, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
 | 
			
		||||
    _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
 | 
			
		||||
    _______, _______, _______, _______, _______, _______, _______,                            _______, _______, _______, _______, _______, _______, _______
 | 
			
		||||
  ),
 | 
			
		||||
 | 
			
		||||
  [2] = LAYOUT_all(
 | 
			
		||||
    _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
 | 
			
		||||
    _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
 | 
			
		||||
    _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
 | 
			
		||||
    _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
 | 
			
		||||
    _______, _______, _______, _______, _______, _______, _______,                            _______, _______, _______, _______, _______, _______, _______
 | 
			
		||||
  ),
 | 
			
		||||
 | 
			
		||||
  [3] = LAYOUT_all(
 | 
			
		||||
    _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
 | 
			
		||||
    _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
 | 
			
		||||
    _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
 | 
			
		||||
    _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
 | 
			
		||||
    _______, _______, _______, _______, _______, _______, _______,                            _______, _______, _______, _______, _______, _______, _______
 | 
			
		||||
  )
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
#ifdef ENCODER_MAP_ENABLE
 | 
			
		||||
const uint16_t PROGMEM encoder_map[][NUM_ENCODERS][2] = {
 | 
			
		||||
	[0] = { ENCODER_CCW_CW(KC_VOLU, KC_VOLD), ENCODER_CCW_CW(KC_PGUP, KC_PGDN) },
 | 
			
		||||
	[1] = { ENCODER_CCW_CW(RGB_MOD, RGB_RMOD), ENCODER_CCW_CW(KC_MNXT, KC_MPRV) },
 | 
			
		||||
	[2] = { ENCODER_CCW_CW(_______, _______), ENCODER_CCW_CW(_______, _______) },
 | 
			
		||||
	[3] = { ENCODER_CCW_CW(_______, _______), ENCODER_CCW_CW(_______, _______) },
 | 
			
		||||
};
 | 
			
		||||
#endif
 | 
			
		||||
							
								
								
									
										3
									
								
								keyboards/keebio/convolution/keymaps/via/rules.mk
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										3
									
								
								keyboards/keebio/convolution/keymaps/via/rules.mk
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,3 @@
 | 
			
		|||
VIA_ENABLE = yes
 | 
			
		||||
LTO_ENABLE = yes
 | 
			
		||||
ENCODER_MAP_ENABLE = yes
 | 
			
		||||
							
								
								
									
										18
									
								
								keyboards/keebio/convolution/readme.md
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										18
									
								
								keyboards/keebio/convolution/readme.md
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,18 @@
 | 
			
		|||
# Convolution
 | 
			
		||||
 | 
			
		||||
A 65XT staggered keyboard made and sold by Keebio. [More info at Keebio](https://keeb.io).
 | 
			
		||||
 | 
			
		||||
* Keyboard Maintainer: [Bakingpy/nooges](https://github.com/nooges)
 | 
			
		||||
* Hardware Availability: [Keebio](https://keeb.io/)
 | 
			
		||||
 | 
			
		||||
Make example for this keyboard (after setting up your build environment):
 | 
			
		||||
 | 
			
		||||
    make keebio/convolution/rev1:default
 | 
			
		||||
 | 
			
		||||
Example of flashing this keyboard:
 | 
			
		||||
 | 
			
		||||
    make keebio/convolution/rev1:default:flash
 | 
			
		||||
 | 
			
		||||
See [build environment setup](https://docs.qmk.fm/#/getting_started_build_tools) then the [make instructions](https://docs.qmk.fm/#/getting_started_make_guide) for more information.
 | 
			
		||||
 | 
			
		||||
A build guide for this keyboard can be found here: [Keebio Build Guides](https://docs.keeb.io)
 | 
			
		||||
							
								
								
									
										46
									
								
								keyboards/keebio/convolution/rev1/config.h
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										46
									
								
								keyboards/keebio/convolution/rev1/config.h
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,46 @@
 | 
			
		|||
/* Copyright 2022 Danny Nguyen <danny@keeb.io>
 | 
			
		||||
 | 
			
		||||
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
 | 
			
		||||
 | 
			
		||||
// RGB Matrix
 | 
			
		||||
#define RGB_DI_PIN GP26
 | 
			
		||||
#define RGB_MATRIX_LED_COUNT 16
 | 
			
		||||
#define RGB_DISABLE_WHEN_USB_SUSPENDED
 | 
			
		||||
 | 
			
		||||
#define ENABLE_RGB_MATRIX_ALPHAS_MODS
 | 
			
		||||
#define ENABLE_RGB_MATRIX_GRADIENT_UP_DOWN
 | 
			
		||||
#define ENABLE_RGB_MATRIX_GRADIENT_LEFT_RIGHT
 | 
			
		||||
#define ENABLE_RGB_MATRIX_BREATHING
 | 
			
		||||
#define ENABLE_RGB_MATRIX_BAND_SAT
 | 
			
		||||
#define ENABLE_RGB_MATRIX_BAND_VAL
 | 
			
		||||
#define ENABLE_RGB_MATRIX_BAND_PINWHEEL_SAT
 | 
			
		||||
#define ENABLE_RGB_MATRIX_BAND_PINWHEEL_VAL
 | 
			
		||||
#define ENABLE_RGB_MATRIX_BAND_SPIRAL_SAT
 | 
			
		||||
#define ENABLE_RGB_MATRIX_BAND_SPIRAL_VAL
 | 
			
		||||
#define ENABLE_RGB_MATRIX_CYCLE_ALL
 | 
			
		||||
#define ENABLE_RGB_MATRIX_CYCLE_LEFT_RIGHT
 | 
			
		||||
#define ENABLE_RGB_MATRIX_CYCLE_UP_DOWN
 | 
			
		||||
#define ENABLE_RGB_MATRIX_RAINBOW_MOVING_CHEVRON
 | 
			
		||||
#define ENABLE_RGB_MATRIX_CYCLE_OUT_IN
 | 
			
		||||
#define ENABLE_RGB_MATRIX_CYCLE_OUT_IN_DUAL
 | 
			
		||||
#define ENABLE_RGB_MATRIX_CYCLE_PINWHEEL
 | 
			
		||||
#define ENABLE_RGB_MATRIX_CYCLE_SPIRAL
 | 
			
		||||
#define ENABLE_RGB_MATRIX_DUAL_BEACON
 | 
			
		||||
#define ENABLE_RGB_MATRIX_RAINBOW_BEACON
 | 
			
		||||
#define ENABLE_RGB_MATRIX_RAINBOW_PINWHEELS
 | 
			
		||||
 | 
			
		||||
#define VIA_EEPROM_LAYOUT_OPTIONS_SIZE 2
 | 
			
		||||
							
								
								
									
										49
									
								
								keyboards/keebio/convolution/rev1/info.json
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										49
									
								
								keyboards/keebio/convolution/rev1/info.json
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,49 @@
 | 
			
		|||
{
 | 
			
		||||
    "keyboard_name": "Convolution Rev. 1",
 | 
			
		||||
    "usb": {
 | 
			
		||||
        "pid": "0x145F",
 | 
			
		||||
        "device_version": "1.0.0"
 | 
			
		||||
    },
 | 
			
		||||
    "processor": "RP2040",
 | 
			
		||||
    "bootloader": "rp2040",
 | 
			
		||||
    "debounce": 5,
 | 
			
		||||
    "diode_direction": "COL2ROW",
 | 
			
		||||
    "features": {
 | 
			
		||||
        "console": true,
 | 
			
		||||
        "rgblight": false,
 | 
			
		||||
        "backlight": false,
 | 
			
		||||
        "rgb_matrix": true,
 | 
			
		||||
    },
 | 
			
		||||
    "matrix_pins": {
 | 
			
		||||
        "cols": ["GP0", "GP4", "GP9", "GP8", "GP20", "GP21", "GP23", "GP24", "GP17"],
 | 
			
		||||
        "rows": ["GP29", "GP28", "GP27", "GP25", "GP22", "GP1", "GP2", "GP3", "GP5", "GP10"]
 | 
			
		||||
    },
 | 
			
		||||
    "encoder": {
 | 
			
		||||
        "enabled": true,
 | 
			
		||||
        "rotary": [
 | 
			
		||||
            {"pin_a": "GP19", "pin_b": "GP18" },
 | 
			
		||||
            {"pin_a": "GP14", "pin_b": "GP15" }
 | 
			
		||||
        ]
 | 
			
		||||
    },
 | 
			
		||||
    "rgb_matrix": {
 | 
			
		||||
        "driver": "WS2812",
 | 
			
		||||
        "layout": [
 | 
			
		||||
            { "flags": 2, "x": 12, "y": 13 },
 | 
			
		||||
            { "flags": 2, "x": 40,  "y": 13 },
 | 
			
		||||
            { "flags": 2, "x": 77,  "y": 13 },
 | 
			
		||||
            { "flags": 2, "x": 101,  "y": 13 },
 | 
			
		||||
            { "flags": 2, "x": 126,  "y": 13 },
 | 
			
		||||
            { "flags": 2, "x": 150,  "y": 13 },
 | 
			
		||||
            { "flags": 2, "x": 181,  "y": 13 },
 | 
			
		||||
            { "flags": 2, "x": 212,  "y": 13 },
 | 
			
		||||
            { "flags": 2, "x": 212,  "y": 51 },
 | 
			
		||||
            { "flags": 2, "x": 181,  "y": 51 },
 | 
			
		||||
            { "flags": 2, "x": 149,  "y": 51 },
 | 
			
		||||
            { "flags": 2, "x": 121,  "y": 51 },
 | 
			
		||||
            { "flags": 2, "x": 101,  "y": 51 },
 | 
			
		||||
            { "flags": 2, "x": 75,  "y": 51 },
 | 
			
		||||
            { "flags": 2, "x": 43,  "y": 51 },
 | 
			
		||||
            { "flags": 2, "x": 12,  "y": 51 }
 | 
			
		||||
        ]
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										80
									
								
								keyboards/keebio/convolution/rev1/rev1.h
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										80
									
								
								keyboards/keebio/convolution/rev1/rev1.h
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,80 @@
 | 
			
		|||
/* Copyright 2022 Danny Nguyen <danny@keeb.io>
 | 
			
		||||
 | 
			
		||||
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 "convolution.h"
 | 
			
		||||
#include "quantum.h"
 | 
			
		||||
 | 
			
		||||
#define LAYOUT_65xt( \
 | 
			
		||||
  LA1, LA2, LA3, LA4, LA5, LA6, LA7, LA8, LA9,      RA9, RA8, RA7, RA6, RA5, RA4, RA3, RA2, RA1, \
 | 
			
		||||
  LB1, LB2, LB3, LB4, LB5, LB6, LB7, LB8, LB9,      RB9, RB8, RB7, RB6, RB5, RB4, RB3,      RB1, \
 | 
			
		||||
  LC1, LC2, LC3, LC4, LC5, LC6, LC7, LC8, LC9,      RC9, RC8, RC7, RC6, RC5,      RC3,      RC1, \
 | 
			
		||||
  LD1, LD2, LD3,      LD5, LD6, LD7, LD8, LD9,      RD9, RD8, RD7, RD6, RD5, RD4, RD3,      RD1, \
 | 
			
		||||
  LE1, LE2, LE3, LE4, LE5, LE6,           LE9,      RE9,      RE7, RE6, RE5, RE4, RE3,      RE1 \
 | 
			
		||||
  ) \
 | 
			
		||||
  { \
 | 
			
		||||
    { LA1, LA2, LA3, LA4, LA5, LA6, LA7, LA8, LA9 }, \
 | 
			
		||||
    { LB1, LB2, LB3, LB4, LB5, LB6, LB7, LB8, LB9 }, \
 | 
			
		||||
    { LC1, LC2, LC3, LC4, LC5, LC6, LC7, LC8, LC9 }, \
 | 
			
		||||
    { LD1, LD2, LD3, KC_NO, LD5, LD6, LD7, LD8, LD9 }, \
 | 
			
		||||
    { LE1, LE2, LE3, LE4, LE5, LE6, KC_NO, KC_NO, LE9 }, \
 | 
			
		||||
    { RA1, RA2, RA3, RA4, RA5, RA6, RA7, RA8, RA9 }, \
 | 
			
		||||
    { RB1, KC_NO, RB3, RB4, RB5, RB6, RB7, RB8, RB9 }, \
 | 
			
		||||
    { RC1, KC_NO, RC3, KC_NO, RC5, RC6, RC7, RC8, RC9 }, \
 | 
			
		||||
    { RD1, KC_NO, RD3, RD4, RD5, RD6, RD7, RD8, RD9 }, \
 | 
			
		||||
    { RE1, KC_NO, RE3, RE4, RE5, RE6, RE7, KC_NO, RE9 } \
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
#define LAYOUT_65xt_iso( \
 | 
			
		||||
  LA1, LA2, LA3, LA4, LA5, LA6, LA7, LA8, LA9,      RA9, RA8, RA7, RA6, RA5, RA4, RA3, RA2, RA1, \
 | 
			
		||||
  LB1, LB2, LB3, LB4, LB5, LB6, LB7, LB8, LB9,      RB9, RB8, RB7, RB6, RB5, RB4,           RB1, \
 | 
			
		||||
  LC1, LC2, LC3, LC4, LC5, LC6, LC7, LC8, LC9,      RC9, RC8, RC7, RC6, RC5, RC4, RC3,      RC1, \
 | 
			
		||||
  LD1, LD2, LD3, LD4, LD5, LD6, LD7, LD8, LD9,      RD9, RD8, RD7, RD6, RD5, RD4, RD3,      RD1, \
 | 
			
		||||
  LE1, LE2, LE3, LE4, LE5, LE6,           LE9,      RE9,      RE7, RE6, RE5, RE4, RE3,      RE1 \
 | 
			
		||||
  ) \
 | 
			
		||||
  { \
 | 
			
		||||
    { LA1, LA2, LA3, LA4, LA5, LA6, LA7, LA8, LA9 }, \
 | 
			
		||||
    { LB1, LB2, LB3, LB4, LB5, LB6, LB7, LB8, LB9 }, \
 | 
			
		||||
    { LC1, LC2, LC3, LC4, LC5, LC6, LC7, LC8, LC9 }, \
 | 
			
		||||
    { LD1, LD2, LD3, LD4, LD5, LD6, LD7, LD8, LD9 }, \
 | 
			
		||||
    { LE1, LE2, LE3, LE4, LE5, LE6, KC_NO, KC_NO, LE9 }, \
 | 
			
		||||
    { RA1, RA2, RA3, RA4, RA5, RA6, RA7, RA8, RA9 }, \
 | 
			
		||||
    { RB1, KC_NO, KC_NO, RB4, RB5, RB6, RB7, RB8, RB9 }, \
 | 
			
		||||
    { RC1, KC_NO, RC3, RC4, RC5, RC6, RC7, RC8, RC9 }, \
 | 
			
		||||
    { RD1, KC_NO, RD3, RD4, RD5, RD6, RD7, RD8, RD9 }, \
 | 
			
		||||
    { RE1, KC_NO, RE3, RE4, RE5, RE6, RE7, KC_NO, RE9 } \
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
#define LAYOUT_all( \
 | 
			
		||||
  LA1, LA2, LA3, LA4, LA5, LA6, LA7, LA8, LA9,      RA9, RA8, RA7, RA6, RA5, RA4, RA3, RA2, RA1, \
 | 
			
		||||
  LB1, LB2, LB3, LB4, LB5, LB6, LB7, LB8, LB9,      RB9, RB8, RB7, RB6, RB5, RB4, RB3,      RB1, \
 | 
			
		||||
  LC1, LC2, LC3, LC4, LC5, LC6, LC7, LC8, LC9,      RC9, RC8, RC7, RC6, RC5, RC4, RC3,      RC1, \
 | 
			
		||||
  LD1, LD2, LD3, LD4, LD5, LD6, LD7, LD8, LD9,      RD9, RD8, RD7, RD6, RD5, RD4, RD3,      RD1, \
 | 
			
		||||
  LE1, LE2, LE3, LE4, LE5, LE6,           LE9,      RE9,      RE7, RE6, RE5, RE4, RE3,      RE1 \
 | 
			
		||||
  ) \
 | 
			
		||||
  { \
 | 
			
		||||
    { LA1, LA2, LA3, LA4, LA5, LA6, LA7, LA8, LA9 }, \
 | 
			
		||||
    { LB1, LB2, LB3, LB4, LB5, LB6, LB7, LB8, LB9 }, \
 | 
			
		||||
    { LC1, LC2, LC3, LC4, LC5, LC6, LC7, LC8, LC9 }, \
 | 
			
		||||
    { LD1, LD2, LD3, LD4, LD5, LD6, LD7, LD8, LD9 }, \
 | 
			
		||||
    { LE1, LE2, LE3, LE4, LE5, LE6, KC_NO, KC_NO, LE9 }, \
 | 
			
		||||
    { RA1, RA2, RA3, RA4, RA5, RA6, RA7, RA8, RA9 }, \
 | 
			
		||||
    { RB1, KC_NO, RB3, RB4, RB5, RB6, RB7, RB8, RB9 }, \
 | 
			
		||||
    { RC1, KC_NO, RC3, RC4, RC5, RC6, RC7, RC8, RC9 }, \
 | 
			
		||||
    { RD1, KC_NO, RD3, RD4, RD5, RD6, RD7, RD8, RD9 }, \
 | 
			
		||||
    { RE1, KC_NO, RE3, RE4, RE5, RE6, RE7, KC_NO, RE9 } \
 | 
			
		||||
  }
 | 
			
		||||
							
								
								
									
										1
									
								
								keyboards/keebio/convolution/rev1/rules.mk
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								keyboards/keebio/convolution/rev1/rules.mk
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1 @@
 | 
			
		|||
WS2812_DRIVER = vendor
 | 
			
		||||
							
								
								
									
										1
									
								
								keyboards/keebio/convolution/rules.mk
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								keyboards/keebio/convolution/rules.mk
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1 @@
 | 
			
		|||
DEFAULT_FOLDER = keebio/convolution/rev1
 | 
			
		||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue