[Keyboard] Add AkemiPad (#18790)
Co-authored-by: Ryan <fauxpark@gmail.com>
This commit is contained in:
		
							parent
							
								
									95e97fa839
								
							
						
					
					
						commit
						3de3f885de
					
				
					 18 changed files with 1167 additions and 0 deletions
				
			
		
							
								
								
									
										4
									
								
								keyboards/adpenrose/akemipad/akemipad.c
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										4
									
								
								keyboards/adpenrose/akemipad/akemipad.c
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,4 @@
 | 
			
		|||
// Copyright 2022 Arturo Avila (@ADPenrose)
 | 
			
		||||
// SPDX-License-Identifier: GPL-2.0-or-later
 | 
			
		||||
 | 
			
		||||
#include "akemipad.h"
 | 
			
		||||
							
								
								
									
										31
									
								
								keyboards/adpenrose/akemipad/akemipad.h
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										31
									
								
								keyboards/adpenrose/akemipad/akemipad.h
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,31 @@
 | 
			
		|||
// Copyright 2022 Arturo Avila (@ADPenrose)
 | 
			
		||||
// SPDX-License-Identifier: GPL-2.0-or-later
 | 
			
		||||
 | 
			
		||||
#pragma once
 | 
			
		||||
 | 
			
		||||
#include "quantum.h"
 | 
			
		||||
 | 
			
		||||
/* This is a shortcut to help you visually see your layout.
 | 
			
		||||
 *
 | 
			
		||||
 * The first section contains all of the arguments representing the physical
 | 
			
		||||
 * layout of the board and position of the keys.
 | 
			
		||||
 *
 | 
			
		||||
 * The second converts the arguments into a two-dimensional array which
 | 
			
		||||
 * represents the switch matrix.
 | 
			
		||||
 */
 | 
			
		||||
 | 
			
		||||
#define LAYOUT_all( \
 | 
			
		||||
         K00, K01, K02, K03, \
 | 
			
		||||
         K10, K11, K12, K13, \
 | 
			
		||||
         K20, K21, K22, K23, \
 | 
			
		||||
         K30, K31, K32, K33, \
 | 
			
		||||
         K40, K41, K42, K43, \
 | 
			
		||||
    K54, K50, K51, K52, K53  \
 | 
			
		||||
) { \
 | 
			
		||||
    { K00, K01, K02, K03, KC_NO }, \
 | 
			
		||||
    { K10, K11, K12, K13, KC_NO }, \
 | 
			
		||||
    { K20, K21, K22, K23, KC_NO }, \
 | 
			
		||||
    { K30, K31, K32, K33, KC_NO }, \
 | 
			
		||||
    { K40, K41, K42, K43, KC_NO }, \
 | 
			
		||||
    { K50, K51, K52, K53, K54 } \
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										62
									
								
								keyboards/adpenrose/akemipad/config.h
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										62
									
								
								keyboards/adpenrose/akemipad/config.h
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,62 @@
 | 
			
		|||
// Copyright 2022 Arturo Avila (@ADPenrose)
 | 
			
		||||
// SPDX-License-Identifier: GPL-2.0-or-later
 | 
			
		||||
 | 
			
		||||
#pragma once
 | 
			
		||||
 | 
			
		||||
#include "config_common.h"
 | 
			
		||||
 | 
			
		||||
/* Key matrix size */
 | 
			
		||||
#define MATRIX_ROWS 6
 | 
			
		||||
#define MATRIX_COLS 5
 | 
			
		||||
 | 
			
		||||
/*
 | 
			
		||||
 * Keyboard Matrix Assignments
 | 
			
		||||
 *
 | 
			
		||||
 * Change this to how you wired your keyboard
 | 
			
		||||
 * COLS: AVR pins used for columns, left to right
 | 
			
		||||
 * ROWS: AVR pins used for rows, top to bottom
 | 
			
		||||
 * DIODE_DIRECTION: COL2ROW = COL = Anode (+), ROW = Cathode (-, marked on diode)
 | 
			
		||||
 *                  ROW2COL = ROW = Anode (+), COL = Cathode (-, marked on diode)
 | 
			
		||||
 *
 | 
			
		||||
 */
 | 
			
		||||
#define MATRIX_ROW_PINS { D4, D7, E6, B6, B4, B5 }
 | 
			
		||||
#define MATRIX_COL_PINS { D3, D2, F5, F6, B2 }
 | 
			
		||||
 | 
			
		||||
/* COL2ROW, ROW2COL */
 | 
			
		||||
#define DIODE_DIRECTION COL2ROW
 | 
			
		||||
 | 
			
		||||
/*Rotary encoder - set the resolution fitting your encoder.
 | 
			
		||||
Most will need a value of 4. If 1 encoder click results in 2 keycodes sent
 | 
			
		||||
increase the value. If you need 2 clicks for 1 keycode, decrease*/
 | 
			
		||||
#define ENCODER_RESOLUTION 4
 | 
			
		||||
#define ENCODERS_PAD_A { B1 }
 | 
			
		||||
#define ENCODERS_PAD_B { B3 }
 | 
			
		||||
#define TAP_CODE_DELAY 10
 | 
			
		||||
 | 
			
		||||
/* Audio functionality */
 | 
			
		||||
#define AUDIO_PIN C6
 | 
			
		||||
#define AUDIO_CLICKY
 | 
			
		||||
#define AUDIO_ENABLE_TONE_MULTIPLEXING
 | 
			
		||||
#define AUDIO_TONE_MULTIPLEXING_RATE_DEFAULT 10
 | 
			
		||||
 | 
			
		||||
// The pin connected to the data pin of the LEDs
 | 
			
		||||
#define RGB_DI_PIN F4
 | 
			
		||||
// The number of LEDs connected
 | 
			
		||||
#define RGB_MATRIX_LED_COUNT 27
 | 
			
		||||
#define RGB_MATRIX_CENTER { 60, 77 }
 | 
			
		||||
#define RGB_MATRIX_MAXIMUM_BRIGHTNESS 175
 | 
			
		||||
#define RGB_DISABLE_WHEN_USB_SUSPENDED
 | 
			
		||||
#ifdef RGB_MATRIX_ENABLE
 | 
			
		||||
// RGB Matrix Animation modes. Explicitly enabled
 | 
			
		||||
// For full list of effects, see:
 | 
			
		||||
// https://docs.qmk.fm/#/feature_rgb_matrix?id=rgb-matrix-effects
 | 
			
		||||
#    define ENABLE_RGB_MATRIX_CYCLE_LEFT_RIGHT
 | 
			
		||||
#    define ENABLE_RGB_MATRIX_CYCLE_UP_DOWN
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
/* Debounce reduces chatter (unintended double-presses) - set 0 if debouncing is not needed */
 | 
			
		||||
#define DEBOUNCE 5
 | 
			
		||||
 | 
			
		||||
/* Bootmagic Lite key configuration */
 | 
			
		||||
#define BOOTMAGIC_LITE_ROW 0
 | 
			
		||||
#define BOOTMAGIC_LITE_COLUMN 0
 | 
			
		||||
							
								
								
									
										41
									
								
								keyboards/adpenrose/akemipad/info.json
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										41
									
								
								keyboards/adpenrose/akemipad/info.json
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,41 @@
 | 
			
		|||
{
 | 
			
		||||
    "manufacturer": "ADPenrose",
 | 
			
		||||
    "keyboard_name": "AkemiPad",
 | 
			
		||||
    "maintainer": "Arturo Avila",
 | 
			
		||||
    "usb": {
 | 
			
		||||
        "device_version": "1.0.0",
 | 
			
		||||
        "pid": "0x0004",
 | 
			
		||||
        "vid": "0x4450"
 | 
			
		||||
    },
 | 
			
		||||
    "layouts": {
 | 
			
		||||
        "LAYOUT_all": {
 | 
			
		||||
            "layout": [
 | 
			
		||||
                { "label": "F1", "x": 1.25, "y": 0 },
 | 
			
		||||
                { "label": "F2", "x": 2.25, "y": 0 },
 | 
			
		||||
                { "label": "F3", "x": 3.25, "y": 0 },
 | 
			
		||||
                { "label": "F4", "x": 4.25, "y": 0 },
 | 
			
		||||
                { "label": "Num Lock", "x": 1.25, "y": 1.25 },
 | 
			
		||||
                { "label": "/", "x": 2.25, "y": 1.25 },
 | 
			
		||||
                { "label": "*", "x": 3.25, "y": 1.25 },
 | 
			
		||||
                { "label": "-", "x": 4.25, "y": 1.25 },
 | 
			
		||||
                { "label": "7", "x": 1.25, "y": 2.25 },
 | 
			
		||||
                { "label": "8", "x": 2.25, "y": 2.25 },
 | 
			
		||||
                { "label": "9", "x": 3.25, "y": 2.25 },
 | 
			
		||||
                { "x": 4.25, "y": 2.25 },
 | 
			
		||||
                { "label": "4", "x": 1.25, "y": 3.25 },
 | 
			
		||||
                { "label": "5", "x": 2.25, "y": 3.25 },
 | 
			
		||||
                { "label": "6", "x": 3.25, "y": 3.25 },
 | 
			
		||||
                { "x": 4.25, "y": 3.25 },
 | 
			
		||||
                { "label": "1", "x": 1.25, "y": 4.25 },
 | 
			
		||||
                { "label": "2", "x": 2.25, "y": 4.25 },
 | 
			
		||||
                { "label": "3", "x": 3.25, "y": 4.25 },
 | 
			
		||||
                { "x": 4.25, "y": 4.25 },
 | 
			
		||||
                { "label": "Enc", "x": 0, "y": 5.25 },
 | 
			
		||||
                { "x": 1.25, "y": 5.25 },
 | 
			
		||||
                { "x": 2.25, "y": 5.25 },
 | 
			
		||||
                { "label": ".", "x": 3.25, "y": 5.25 },
 | 
			
		||||
                { "x": 4.25, "y": 5.25 }
 | 
			
		||||
            ]
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										68
									
								
								keyboards/adpenrose/akemipad/keymaps/default/keymap.c
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										68
									
								
								keyboards/adpenrose/akemipad/keymaps/default/keymap.c
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,68 @@
 | 
			
		|||
// Copyright 2022 Arturo Avila (@ADPenrose)
 | 
			
		||||
// SPDX-License-Identifier: GPL-2.0-or-later
 | 
			
		||||
 | 
			
		||||
#include QMK_KEYBOARD_H
 | 
			
		||||
 | 
			
		||||
/* Setting up the LED matrix */
 | 
			
		||||
led_config_t g_led_config = { {
 | 
			
		||||
  // Key Matrix to LED Index
 | 
			
		||||
  { 0, 1, 2, 3, NO_LED },
 | 
			
		||||
  { 4, 5, 6, 7, NO_LED },
 | 
			
		||||
  { 8, 9, 10, 11, 12 },
 | 
			
		||||
  { 13, 14, 15, 16, NO_LED },
 | 
			
		||||
  { 17, 18, 19, 20, 21 },
 | 
			
		||||
  { 22, 23, 24, 25, 26 },
 | 
			
		||||
}, {
 | 
			
		||||
  // LED Index to Physical Position
 | 
			
		||||
  {  0,0  }, { 37,0  }, { 74,0  }, {111,0  }, {  0,34 }, { 37,34 }, { 74,34 }, {111,34 }, {  0,62 }, { 37,62 }, 
 | 
			
		||||
  { 74,62 }, {111,62 }, {120,75 }, {  0,89 }, { 37,89 }, { 74,89 }, {111,89 }, {  0,117}, { 37,117}, { 74,117}, 
 | 
			
		||||
  {111,117}, {120,130}, {  0,137}, { 18,144}, { 37,137}, { 74,144}, {111,144}
 | 
			
		||||
}, {
 | 
			
		||||
  // LED Index to Flag
 | 
			
		||||
  4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4
 | 
			
		||||
} };
 | 
			
		||||
 | 
			
		||||
/* Keymap */
 | 
			
		||||
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
 | 
			
		||||
    [0] = LAYOUT_all(
 | 
			
		||||
                  MO(1),    MO(2),     MO(3),     KC_DEL,
 | 
			
		||||
                  KC_NUM,   KC_PSLS,   KC_PAST,   KC_PMNS,
 | 
			
		||||
                  KC_P7,    KC_P8,     KC_P9,     KC_PPLS,
 | 
			
		||||
                  KC_P4,    KC_P5,     KC_P6,     KC_PPLS,
 | 
			
		||||
                  KC_P1,    KC_P2,     KC_P3,     KC_PENT,
 | 
			
		||||
        KC_MUTE,  KC_P0,    KC_P0,     KC_PDOT,   KC_PENT 
 | 
			
		||||
    ),
 | 
			
		||||
    [1] = LAYOUT_all(
 | 
			
		||||
                  KC_TRNS,  CK_DOWN,   CK_UP,     CK_RST,
 | 
			
		||||
                  MU_TOG,   MU_MOD,    KC_TRNS,   KC_TRNS,
 | 
			
		||||
                  KC_TRNS,  KC_TRNS,   KC_TRNS,   KC_TRNS,
 | 
			
		||||
                  KC_TRNS,  KC_TRNS,   KC_TRNS,   KC_TRNS,
 | 
			
		||||
                  KC_TRNS,  KC_TRNS,   KC_TRNS,   KC_TRNS,
 | 
			
		||||
        CK_TOGG,  KC_TRNS,  KC_TRNS,   KC_TRNS,   KC_TRNS 
 | 
			
		||||
    ),
 | 
			
		||||
    [2] = LAYOUT_all(
 | 
			
		||||
                  KC_TRNS,  KC_TRNS,   KC_TRNS,   KC_TRNS,
 | 
			
		||||
                  KC_TRNS,  KC_TRNS,   KC_TRNS,   KC_TRNS,
 | 
			
		||||
                  KC_TRNS,  KC_TRNS,   KC_TRNS,   KC_TRNS,
 | 
			
		||||
                  KC_TRNS,  KC_TRNS,   KC_TRNS,   KC_TRNS,
 | 
			
		||||
                  KC_TRNS,  KC_TRNS,   KC_TRNS,   KC_TRNS,
 | 
			
		||||
        KC_TRNS,  KC_TRNS,  KC_TRNS,   KC_TRNS,   KC_TRNS 
 | 
			
		||||
    ),
 | 
			
		||||
    [3] = LAYOUT_all(
 | 
			
		||||
                  QK_BOOT,  KC_TRNS,   KC_TRNS,   KC_TRNS,
 | 
			
		||||
                  KC_TRNS,  KC_TRNS,   KC_TRNS,   KC_TRNS,
 | 
			
		||||
                  KC_TRNS,  KC_TRNS,   KC_TRNS,   KC_TRNS,
 | 
			
		||||
                  KC_TRNS,  KC_TRNS,   KC_TRNS,   KC_TRNS,
 | 
			
		||||
                  KC_TRNS,  KC_TRNS,   KC_TRNS,   KC_TRNS,
 | 
			
		||||
        KC_TRNS,  KC_TRNS,  KC_TRNS,   KC_TRNS,   KC_TRNS 
 | 
			
		||||
    )
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
#if defined(ENCODER_MAP_ENABLE)
 | 
			
		||||
const uint16_t PROGMEM encoder_map[][NUM_ENCODERS][2] = {
 | 
			
		||||
    [0] = { ENCODER_CCW_CW(KC_VOLD, KC_VOLU) },
 | 
			
		||||
    [1] = { ENCODER_CCW_CW(RGB_HUD, RGB_HUI) },
 | 
			
		||||
    [2] = { ENCODER_CCW_CW(RGB_SAD, RGB_SAI) },
 | 
			
		||||
    [3] = { ENCODER_CCW_CW(RGB_VAD, RGB_VAI) }
 | 
			
		||||
};
 | 
			
		||||
#endif
 | 
			
		||||
							
								
								
									
										12
									
								
								keyboards/adpenrose/akemipad/keymaps/default/readme.md
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										12
									
								
								keyboards/adpenrose/akemipad/keymaps/default/readme.md
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,12 @@
 | 
			
		|||
# The default keymap for the AkemiPad
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
## Features
 | 
			
		||||
- Audio Click and Music Mode capabilities.
 | 
			
		||||
- RGB Matrix Lighting (cycles left-right and up-down).
 | 
			
		||||
- Encoder Map feature.
 | 
			
		||||
 | 
			
		||||
### Disclaimer
 | 
			
		||||
The AkemiPad has multiple layout options (each one with its own LED positions), but this keymap does not take that into consideration.
 | 
			
		||||
If you want to select an specific layout (and see how the LEDs turn on and off accordingly), you
 | 
			
		||||
should use the [via keymap](../via).
 | 
			
		||||
							
								
								
									
										1
									
								
								keyboards/adpenrose/akemipad/keymaps/default/rules.mk
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								keyboards/adpenrose/akemipad/keymaps/default/rules.mk
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1 @@
 | 
			
		|||
ENCODER_MAP_ENABLE = yes
 | 
			
		||||
| 
						 | 
				
			
			@ -0,0 +1,392 @@
 | 
			
		|||
// Copyright 2022 Arturo Avila (@ADPenrose)
 | 
			
		||||
// SPDX-License-Identifier: GPL-2.0-or-later
 | 
			
		||||
 | 
			
		||||
#pragma once
 | 
			
		||||
#ifdef OLED_ENABLE
 | 
			
		||||
 | 
			
		||||
// Enable OLED bitmpa compression selectively.
 | 
			
		||||
#define USE_OLED_BITMAP_COMPRESSION
 | 
			
		||||
 | 
			
		||||
#define NUM_IDLE_FRAMES 5
 | 
			
		||||
#define NUM_TAP_FRAMES 2
 | 
			
		||||
#define NUM_OLED_BYTES 512
 | 
			
		||||
 | 
			
		||||
#ifdef USE_OLED_BITMAP_COMPRESSION
 | 
			
		||||
 | 
			
		||||
static const char PROGMEM idle_1_block_map[] = { //IDLE_1 and IDLE_2 flipped
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00,
 | 
			
		||||
    0x18, 0x00, 0x00, 0x00, 0x70, 0x00, 0x00, 0x00, 0xc0, 0xff, 0x7f, 0x00, 0xf0, 0xb0, 0xc1, 0x07,
 | 
			
		||||
    0xf0, 0xcf, 0x00, 0x1c, 0x00, 0xb8, 0x8f, 0x3f, 0x00, 0x98, 0xff, 0x00, 0x00, 0xf0, 0x03, 0x00,
 | 
			
		||||
    0x00, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x60, 0x00, 0x00, 0x00, 0xc0, 0x01    
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
static const char PROGMEM idle_2_block_map[] = { //IDLE_3 flipped
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00,
 | 
			
		||||
    0x18, 0x00, 0x00, 0x00, 0x70, 0x00, 0x00, 0x00, 0xc0, 0xff, 0xff, 0x00, 0xf0, 0xd8, 0xe0, 0x03,
 | 
			
		||||
    0xf0, 0x6f, 0x00, 0x3e, 0x00, 0xf8, 0xc7, 0x7f, 0x00, 0x98, 0x7f, 0x00, 0x00, 0xf0, 0x03, 0x00,
 | 
			
		||||
    0x00, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x60, 0x00, 0x00, 0x00, 0xc0, 0x01    
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
static const char PROGMEM idle_3_block_map[] = { //IDLE_4 flipped
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00,
 | 
			
		||||
    0x18, 0x00, 0x00, 0x00, 0x70, 0x00, 0x00, 0x00, 0xc0, 0xff, 0xff, 0x01, 0xf0, 0xb0, 0xc1, 0x07,
 | 
			
		||||
    0xf0, 0xcf, 0x00, 0x7c, 0x00, 0xb8, 0x8f, 0xff, 0x00, 0x98, 0xff, 0x00, 0x00, 0xf0, 0x03, 0x00,
 | 
			
		||||
    0x00, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x60, 0x00, 0x00, 0x00, 0xc0, 0x01    
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
static const char PROGMEM idle_4_block_map[] = { //IDLE_5 flipped
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00,
 | 
			
		||||
    0x18, 0x00, 0x00, 0x00, 0x70, 0x00, 0x00, 0x00, 0xc0, 0xff, 0xff, 0x00, 0xf0, 0xb0, 0xc1, 0x07,
 | 
			
		||||
    0xf0, 0xcf, 0x00, 0x3c, 0x00, 0xb8, 0x8f, 0x7f, 0x00, 0x98, 0xff, 0x00, 0x00, 0xf0, 0x03, 0x00,
 | 
			
		||||
    0x00, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x60, 0x00, 0x00, 0x00, 0xc0, 0x01   
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
static const char PROGMEM tap_1_block_map[] = { //TAP_1 flipped
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00,
 | 
			
		||||
    0x18, 0x00, 0x00, 0x00, 0x70, 0x00, 0x00, 0x00, 0xc0, 0xff, 0xff, 0x01, 0x80, 0xff, 0xc1, 0x07,
 | 
			
		||||
    0x00, 0xce, 0x00, 0x7c, 0x00, 0xb8, 0x8d, 0xff, 0x00, 0x98, 0xff, 0x1f, 0xc0, 0xff, 0xff, 0x1f,
 | 
			
		||||
    0x00, 0x3f, 0xfe, 0x01, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x60, 0x00, 0x00, 0x00, 0xc0, 0x01    
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
static const char PROGMEM tap_2_block_map[] = { //TAP_2 flipped
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00,
 | 
			
		||||
    0x18, 0x00, 0x00, 0x00, 0x70, 0x00, 0x00, 0x00, 0xde, 0xff, 0xff, 0x01, 0xfc, 0x80, 0xc1, 0x07,
 | 
			
		||||
    0xf1, 0xcf, 0x00, 0x7c, 0x00, 0xb8, 0x8d, 0xff, 0x00, 0xe0, 0xff, 0x00, 0x00, 0x80, 0x3f, 0x00,
 | 
			
		||||
    0x00, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x60, 0x00, 0x00, 0x00, 0xc0, 0x01   
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
static const char PROGMEM idle_1_block_list[] = { //IDLE_1 and IDLE_2 flipped
 | 
			
		||||
    0x3e, 0xc0, 0x07, 0xf8, 0x1f, 0xe0, 0x03, 0x7c, 0x80, 0x07, 0xf9, 0x01, 0x01, 0x02, 0x02, 0x02,
 | 
			
		||||
    0x04, 0x08, 0x08, 0x08, 0x04, 0x04, 0x02, 0x02, 0x04, 0xf8, 0xe0, 0x18, 0x06, 0x01, 0x78, 0x78,
 | 
			
		||||
    0xc0, 0xc0, 0x01, 0x02, 0x04, 0x18, 0xe0, 0x03, 0x04, 0x04, 0x04, 0x04, 0x02, 0x1c, 0xe0, 0x30,
 | 
			
		||||
    0xc8, 0x01, 0x3e, 0xc0, 0x01, 0x3e, 0xc0, 0x03, 0xc2, 0xc0, 0x18, 0x18, 0x80, 0x40, 0x20, 0x10,
 | 
			
		||||
    0x10, 0x08, 0x07, 0xfc, 0x03, 0x80, 0x83, 0x43, 0x20, 0x10, 0x08, 0x04, 0x02, 0x01, 0x01, 0x01,
 | 
			
		||||
    0x01, 0x07, 0x78, 0x80, 0x07, 0x78, 0x80, 0x07, 0xf8, 0x1f, 0xe0, 0x01, 0x1e, 0xe0
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
static const char PROGMEM idle_2_block_list[] = { //IDLE_3 flipped
 | 
			
		||||
    0x3e, 0xc0, 0x07, 0xf8, 0x1f, 0xe0, 0x03, 0x7c, 0x80, 0x07, 0xf9, 0x01, 0x02, 0x02, 0x06, 0x04,
 | 
			
		||||
    0x08, 0x08, 0x04, 0x04, 0x04, 0x02, 0x02, 0x02, 0x82, 0x64, 0x18, 0xe0, 0x18, 0x06, 0x01, 0x78,
 | 
			
		||||
    0x78, 0xc0, 0xc0, 0x01, 0x02, 0x04, 0x18, 0xe0, 0x03, 0x04, 0x04, 0x04, 0x04, 0x02, 0x1c, 0xe0,
 | 
			
		||||
    0x30, 0xc8, 0x01, 0x1e, 0x20, 0x40, 0x80, 0x01, 0x3e, 0xc0, 0x03, 0xc2, 0xc0, 0x18, 0x18, 0x80,
 | 
			
		||||
    0x40, 0x20, 0x10, 0x10, 0x08, 0x08, 0x04, 0x03, 0xfc, 0x03, 0x83, 0x43, 0x20, 0x10, 0x08, 0x04,
 | 
			
		||||
    0x02, 0x01, 0x01, 0x01, 0x01, 0x07, 0x78, 0x80, 0x07, 0x78, 0x80, 0x07, 0xf8, 0x1f, 0xe0, 0x01,
 | 
			
		||||
    0x1e, 0xe0
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
static const char PROGMEM idle_3_block_list[] = { //IDLE_4 flipped
 | 
			
		||||
    0x3e, 0xc0, 0x07, 0xf8, 0x1f, 0xe0, 0x03, 0x7c, 0x80, 0x07, 0xf9, 0x01, 0x02, 0x02, 0x02, 0x04,
 | 
			
		||||
    0x04, 0x08, 0x08, 0x04, 0x04, 0x04, 0x02, 0x02, 0x02, 0x82, 0x64, 0x18, 0xe0, 0x18, 0x06, 0x01,
 | 
			
		||||
    0x78, 0x78, 0xc0, 0xc0, 0x01, 0x02, 0x04, 0x18, 0xe0, 0x03, 0x04, 0x04, 0x04, 0x04, 0x02, 0x1c,
 | 
			
		||||
    0xe0, 0x30, 0xc8, 0x01, 0x1e, 0x20, 0x40, 0x80, 0x01, 0x3e, 0xc0, 0x03, 0xc2, 0xc0, 0x18, 0x18,
 | 
			
		||||
    0x80, 0x40, 0x20, 0x10, 0x10, 0x08, 0x08, 0x04, 0x03, 0xfc, 0x03, 0x80, 0x83, 0x43, 0x20, 0x10,
 | 
			
		||||
    0x08, 0x04, 0x02, 0x01, 0x01, 0x01, 0x01, 0x07, 0x78, 0x80, 0x07, 0x78, 0x80, 0x07, 0xf8, 0x1f,
 | 
			
		||||
    0xe0, 0x01, 0x1e, 0xe0    
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
static const char PROGMEM idle_4_block_list[] = { //IDLE_5 flipped
 | 
			
		||||
    0x3e, 0xc0, 0x07, 0xf8, 0x1f, 0xe0, 0x03, 0x7c, 0x80, 0x07, 0xf9, 0x01, 0x02, 0x02, 0x02, 0x04,
 | 
			
		||||
    0x04, 0x08, 0x08, 0x04, 0x04, 0x04, 0x02, 0x02, 0x02, 0xe4, 0x18, 0xe0, 0x18, 0x06, 0x01, 0x78,
 | 
			
		||||
    0x78, 0xc0, 0xc0, 0x01, 0x02, 0x04, 0x18, 0xe0, 0x03, 0x04, 0x04, 0x04, 0x04, 0x02, 0x1c, 0xe0,
 | 
			
		||||
    0x30, 0xc8, 0x01, 0x1e, 0x60, 0x80, 0x01, 0x3e, 0xc0, 0x03, 0xc2, 0xc0, 0x18, 0x18, 0x80, 0x40,
 | 
			
		||||
    0x20, 0x10, 0x10, 0x10, 0x08, 0x07, 0xfc, 0x03, 0x80, 0x83, 0x43, 0x20, 0x10, 0x08, 0x04, 0x02,
 | 
			
		||||
    0x01, 0x01, 0x01, 0x01, 0x07, 0x78, 0x80, 0x07, 0x78, 0x80, 0x07, 0xf8, 0x1f, 0xe0, 0x01, 0x1e,
 | 
			
		||||
    0xe0    
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
static const char PROGMEM tap_1_block_list[] = { //TAP_1 flipped
 | 
			
		||||
    0x3e, 0xc0, 0x07, 0xf8, 0x1f, 0xe0, 0x03, 0x7c, 0x80, 0x07, 0xf9, 0x01, 0x02, 0x02, 0x42, 0x44,
 | 
			
		||||
    0x84, 0x88, 0x08, 0x04, 0x04, 0x04, 0x02, 0x02, 0x02, 0x82, 0x64, 0x18, 0x01, 0x0e, 0xf0, 0x20,
 | 
			
		||||
    0x26, 0x26, 0x29, 0x10, 0xd5, 0xce, 0x01, 0x02, 0x04, 0x18, 0xe0, 0x03, 0x1c, 0xe0, 0x30, 0xc8,
 | 
			
		||||
    0x01, 0x1e, 0x20, 0x40, 0x80, 0x01, 0x3e, 0xc0, 0x03, 0x02, 0x18, 0x18, 0x80, 0x40, 0x20, 0x10,
 | 
			
		||||
    0x10, 0x08, 0x08, 0x04, 0x03, 0xfc, 0x03, 0x80, 0x80, 0x40, 0x20, 0x10, 0x08, 0x84, 0xc2, 0xc1,
 | 
			
		||||
    0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xe0, 0xf0, 0xf8, 0xfc, 0xfc, 0xfd, 0xfd, 0x01, 0x07, 0x78,
 | 
			
		||||
    0x80, 0x38, 0xf8, 0xf8, 0xf1, 0xe1, 0xc3, 0x83, 0x03, 0x03, 0x03, 0x03, 0x01, 0x01, 0x03, 0x03,
 | 
			
		||||
    0x07, 0x07, 0x07, 0x78, 0x81, 0x07, 0x07, 0x03, 0x03, 0x01, 0x07, 0xf8, 0x1f, 0xe0, 0x01, 0x1e,
 | 
			
		||||
    0xe0    
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
static const char PROGMEM tap_2_block_list[] = { //TAP_2 flipped
 | 
			
		||||
    0x3e, 0xc0, 0x07, 0xf8, 0x1f, 0xe0, 0x03, 0x7c, 0x80, 0x7e, 0xfe, 0xfe, 0xfe, 0x07, 0xf9, 0x01,
 | 
			
		||||
    0x02, 0x02, 0x02, 0x04, 0x04, 0x08, 0x08, 0x04, 0x04, 0x04, 0x02, 0x02, 0x02, 0x82, 0x64, 0x18,
 | 
			
		||||
    0x01, 0x01, 0xe0, 0x18, 0x06, 0x01, 0xc0, 0xc0, 0x01, 0x02, 0x04, 0x18, 0xe0, 0x0f, 0x03, 0x04,
 | 
			
		||||
    0x04, 0x04, 0x04, 0x02, 0x1c, 0xe0, 0x30, 0xc8, 0x01, 0x1e, 0x20, 0x40, 0x80, 0x01, 0x3e, 0xc0,
 | 
			
		||||
    0x03, 0x02, 0x18, 0x18, 0x80, 0x40, 0x20, 0x10, 0x10, 0x08, 0x08, 0x04, 0x03, 0x0f, 0x70, 0x80,
 | 
			
		||||
    0x81, 0x01, 0x31, 0x32, 0x8a, 0x24, 0x86, 0x79, 0x07, 0x78, 0x81, 0x01, 0x01, 0x01, 0x01, 0x07,
 | 
			
		||||
    0x78, 0x80, 0x07, 0xf8, 0x1f, 0xe0, 0x01, 0x1e, 0xe0
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
// idle_1 and idle_2 are identical, so share them and save some space
 | 
			
		||||
const char* idle_frames[NUM_IDLE_FRAMES] = {
 | 
			
		||||
    idle_1_block_list,
 | 
			
		||||
    idle_1_block_list,
 | 
			
		||||
    idle_2_block_list,
 | 
			
		||||
    idle_3_block_list,
 | 
			
		||||
    idle_4_block_list
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
const char* tap_frames[NUM_TAP_FRAMES] = {
 | 
			
		||||
    tap_1_block_list,
 | 
			
		||||
    tap_2_block_list
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
// idle_1 and idle_2 are identical, so save some space
 | 
			
		||||
const char* idle_block_map[NUM_IDLE_FRAMES] = {
 | 
			
		||||
    idle_1_block_map,
 | 
			
		||||
    idle_1_block_map,
 | 
			
		||||
    idle_2_block_map,
 | 
			
		||||
    idle_3_block_map,
 | 
			
		||||
    idle_4_block_map
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
const char* tap_block_map[NUM_TAP_FRAMES] = {
 | 
			
		||||
    tap_1_block_map,
 | 
			
		||||
    tap_2_block_map
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
#else
 | 
			
		||||
 | 
			
		||||
static const char PROGMEM idle_frames[NUM_IDLE_FRAMES][NUM_OLED_BYTES] = {
 | 
			
		||||
  { // IDLE 1 flipped
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x3e, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x07, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x1f, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0x03, 0x7c, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0xf9, 0x01, 0x01, 0x02, 0x02, 0x02, 0x04, 0x08, 0x08, 
 | 
			
		||||
    0x08, 0x04, 0x04, 0x02, 0x02, 0x04, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0xe0, 0x18, 0x06, 0x01, 0x00, 0x00, 0x00, 0x00, 0x78, 0x78, 0x00, 0xc0, 
 | 
			
		||||
    0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x02, 0x04, 0x18, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0x03, 0x04, 0x04, 0x04, 0x04, 0x02, 0x1c, 0xe0, 0x00, 0x00, 0x30, 0xc8, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x3e, 0xc0, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x3e, 0xc0, 0x00, 0x03, 
 | 
			
		||||
    0xc2, 0xc0, 0x18, 0x18, 0x00, 0x00, 0x00, 0x80, 0x40, 0x20, 0x10, 0x10, 0x08, 0x07, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfc, 0x03, 0x00, 0x00, 0x80, 
 | 
			
		||||
    0x83, 0x43, 0x20, 0x10, 0x08, 0x04, 0x02, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x01, 0x01, 0x07, 
 | 
			
		||||
    0x78, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x07, 0x78, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x07, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0x00, 0x1f, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x1e, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
 | 
			
		||||
    },
 | 
			
		||||
    { //IDLE 2 flipped
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x3e, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x07, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x1f, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0x03, 0x7c, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0xf9, 0x01, 0x01, 0x02, 0x02, 0x02, 0x04, 0x08, 0x08, 
 | 
			
		||||
    0x08, 0x04, 0x04, 0x02, 0x02, 0x04, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0xe0, 0x18, 0x06, 0x01, 0x00, 0x00, 0x00, 0x00, 0x78, 0x78, 0x00, 0xc0, 
 | 
			
		||||
    0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x02, 0x04, 0x18, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0x03, 0x04, 0x04, 0x04, 0x04, 0x02, 0x1c, 0xe0, 0x00, 0x00, 0x30, 0xc8, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x3e, 0xc0, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x3e, 0xc0, 0x00, 0x03, 
 | 
			
		||||
    0xc2, 0xc0, 0x18, 0x18, 0x00, 0x00, 0x00, 0x80, 0x40, 0x20, 0x10, 0x10, 0x08, 0x07, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfc, 0x03, 0x00, 0x00, 0x80, 
 | 
			
		||||
    0x83, 0x43, 0x20, 0x10, 0x08, 0x04, 0x02, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x01, 0x01, 0x07, 
 | 
			
		||||
    0x78, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x07, 0x78, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x07, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0x00, 0x1f, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x1e, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
 | 
			
		||||
    },
 | 
			
		||||
    { //IDLE 3 flipped
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x3e, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x07, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x1f, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0x03, 0x7c, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0xf9, 0x01, 0x02, 0x02, 0x06, 0x04, 0x08, 0x08, 0x04, 
 | 
			
		||||
    0x04, 0x04, 0x02, 0x02, 0x02, 0x82, 0x64, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0xe0, 0x18, 0x06, 0x01, 0x00, 0x00, 0x00, 0x78, 0x78, 0x00, 0xc0, 0xc0, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x02, 0x04, 0x18, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0x03, 0x04, 0x04, 0x04, 0x04, 0x02, 0x1c, 0xe0, 0x00, 0x30, 0xc8, 0x00, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x1e, 0x20, 0x40, 0x80, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x3e, 0xc0, 0x03, 0xc2, 
 | 
			
		||||
    0xc0, 0x18, 0x18, 0x00, 0x00, 0x00, 0x80, 0x40, 0x20, 0x10, 0x10, 0x08, 0x08, 0x04, 0x03, 0x00, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfc, 0x03, 0x00, 0x00, 0x83, 
 | 
			
		||||
    0x43, 0x20, 0x10, 0x08, 0x04, 0x02, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x01, 0x01, 0x07, 
 | 
			
		||||
    0x78, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x07, 0x78, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x07, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0x00, 0x1f, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x1e, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
 | 
			
		||||
    },
 | 
			
		||||
    { //IDLE 4 flipped
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x3e, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x07, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x1f, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0x03, 0x7c, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0xf9, 0x01, 0x02, 0x02, 0x02, 0x04, 0x04, 0x08, 0x08, 
 | 
			
		||||
    0x04, 0x04, 0x04, 0x02, 0x02, 0x02, 0x82, 0x64, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0xe0, 0x18, 0x06, 0x01, 0x00, 0x00, 0x00, 0x00, 0x78, 0x78, 0x00, 0xc0, 
 | 
			
		||||
    0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x02, 0x04, 0x18, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0x03, 0x04, 0x04, 0x04, 0x04, 0x02, 0x1c, 0xe0, 0x00, 0x00, 0x30, 0xc8, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x1e, 0x20, 0x40, 0x80, 0x00, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x3e, 0xc0, 0x00, 0x03, 
 | 
			
		||||
    0xc2, 0xc0, 0x18, 0x18, 0x00, 0x00, 0x00, 0x80, 0x40, 0x20, 0x10, 0x10, 0x08, 0x08, 0x04, 0x03, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfc, 0x03, 0x00, 0x00, 0x80, 
 | 
			
		||||
    0x83, 0x43, 0x20, 0x10, 0x08, 0x04, 0x02, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x01, 0x01, 0x07, 
 | 
			
		||||
    0x78, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x07, 0x78, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x07, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0x00, 0x1f, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x1e, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
 | 
			
		||||
    },
 | 
			
		||||
    { //IDLE 5 flipped
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x3e, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x07, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x1f, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0x03, 0x7c, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0xf9, 0x01, 0x02, 0x02, 0x02, 0x04, 0x04, 0x08, 0x08, 
 | 
			
		||||
    0x04, 0x04, 0x04, 0x02, 0x02, 0x02, 0xe4, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0xe0, 0x18, 0x06, 0x01, 0x00, 0x00, 0x00, 0x00, 0x78, 0x78, 0x00, 0xc0, 
 | 
			
		||||
    0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x02, 0x04, 0x18, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0x03, 0x04, 0x04, 0x04, 0x04, 0x02, 0x1c, 0xe0, 0x00, 0x00, 0x30, 0xc8, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x1e, 0x60, 0x80, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x3e, 0xc0, 0x00, 0x03, 
 | 
			
		||||
    0xc2, 0xc0, 0x18, 0x18, 0x00, 0x00, 0x00, 0x80, 0x40, 0x20, 0x10, 0x10, 0x10, 0x08, 0x07, 0x00, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfc, 0x03, 0x00, 0x00, 0x80, 
 | 
			
		||||
    0x83, 0x43, 0x20, 0x10, 0x08, 0x04, 0x02, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x01, 0x01, 0x07, 
 | 
			
		||||
    0x78, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x07, 0x78, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x07, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0x00, 0x1f, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x1e, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
 | 
			
		||||
    }
 | 
			
		||||
  };
 | 
			
		||||
static const char PROGMEM tap_frames[NUM_TAP_FRAMES][NUM_OLED_BYTES] = {
 | 
			
		||||
  { //Tap 1 flipped
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x3e, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x07, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x1f, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0x03, 0x7c, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0xf9, 0x01, 0x02, 0x02, 0x42, 0x44, 0x84, 0x88, 0x08, 
 | 
			
		||||
    0x04, 0x04, 0x04, 0x02, 0x02, 0x02, 0x82, 0x64, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x0e, 0xf0, 0x20, 0x26, 0x26, 0x29, 0x10, 0xd5, 
 | 
			
		||||
    0xce, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x02, 0x04, 0x18, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x1c, 0xe0, 0x00, 0x00, 0x30, 0xc8, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x1e, 0x20, 0x40, 0x80, 0x00, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x3e, 0xc0, 0x00, 0x03, 
 | 
			
		||||
    0x02, 0x00, 0x18, 0x18, 0x00, 0x00, 0x00, 0x80, 0x40, 0x20, 0x10, 0x10, 0x08, 0x08, 0x04, 0x03, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfc, 0x03, 0x00, 0x00, 0x80, 
 | 
			
		||||
    0x80, 0x40, 0x20, 0x10, 0x08, 0x84, 0xc2, 0xc1, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0xe0, 0xf0, 0xf8, 0xfc, 0xfc, 0xfd, 0xfd, 0x01, 0x07, 
 | 
			
		||||
    0x78, 0x80, 0x38, 0xf8, 0xf8, 0xf1, 0xe1, 0xc3, 0x83, 0x03, 0x03, 0x03, 0x03, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x01, 0x03, 0x03, 0x07, 0x07, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x07, 0x78, 0x81, 0x07, 0x07, 0x03, 0x03, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x07, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0x00, 0x1f, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x1e, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00  
 | 
			
		||||
    },
 | 
			
		||||
    { //Tap 2 flipped
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x3e, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x07, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x1f, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0x03, 0x7c, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x7e, 0xfe, 0xfe, 0xfe, 0x00, 0x07, 0xf9, 0x01, 0x02, 0x02, 0x02, 0x04, 0x04, 0x08, 0x08, 
 | 
			
		||||
    0x04, 0x04, 0x04, 0x02, 0x02, 0x02, 0x82, 0x64, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x00, 0x01, 0x01, 0xe0, 0x18, 0x06, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 
 | 
			
		||||
    0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x02, 0x04, 0x18, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x0f, 0x00, 0x00, 0x00, 0x03, 0x04, 0x04, 0x04, 0x04, 0x02, 0x1c, 0xe0, 0x00, 0x00, 0x30, 0xc8, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x1e, 0x20, 0x40, 0x80, 0x00, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x3e, 0xc0, 0x00, 0x03, 
 | 
			
		||||
    0x02, 0x00, 0x18, 0x18, 0x00, 0x00, 0x00, 0x80, 0x40, 0x20, 0x10, 0x10, 0x08, 0x08, 0x04, 0x03, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0f, 0x70, 0x80, 
 | 
			
		||||
    0x81, 0x01, 0x31, 0x32, 0x8a, 0x24, 0x86, 0x79, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 
 | 
			
		||||
    0x78, 0x81, 0x01, 0x01, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x07, 0x78, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x07, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0x00, 0x1f, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
 | 
			
		||||
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x1e, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 
 | 
			
		||||
    },
 | 
			
		||||
  };
 | 
			
		||||
#endif //USE_BITMAP_COMPRESSION
 | 
			
		||||
#endif //OLED_ENABLE
 | 
			
		||||
| 
						 | 
				
			
			@ -0,0 +1,97 @@
 | 
			
		|||
// Copyright 2022 Arturo Avila (@ADPenrose)
 | 
			
		||||
// SPDX-License-Identifier: GPL-2.0-or-later
 | 
			
		||||
 | 
			
		||||
#include QMK_KEYBOARD_H
 | 
			
		||||
#include "animation_frames.h"
 | 
			
		||||
 | 
			
		||||
#ifdef OLED_ENABLE
 | 
			
		||||
#define IDLE_FRAME_DURATION 200 // Idle animation iteration rate in ms
 | 
			
		||||
 | 
			
		||||
oled_rotation_t oled_init_user(oled_rotation_t rotation) { return OLED_ROTATION_270; }
 | 
			
		||||
 | 
			
		||||
uint32_t anim_timer         = 0;
 | 
			
		||||
uint32_t anim_sleep         = 0;
 | 
			
		||||
uint8_t  current_idle_frame = 0;
 | 
			
		||||
 | 
			
		||||
bool tap_anim        = false;
 | 
			
		||||
bool tap_anim_toggle = false;
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
// Decompress and write a precompressed bitmap frame to the OLED.
 | 
			
		||||
// Documentation and python compression script available at:
 | 
			
		||||
// https://github.com/nullbitsco/squeez-o
 | 
			
		||||
#ifdef USE_OLED_BITMAP_COMPRESSION
 | 
			
		||||
static void oled_write_compressed_P(const char* input_block_map, const char* input_block_list) {
 | 
			
		||||
    uint16_t block_index = 0;
 | 
			
		||||
    for (uint16_t i=0; i<NUM_OLED_BYTES; i++) {
 | 
			
		||||
        uint8_t bit = i%8;
 | 
			
		||||
        uint8_t map_index = i/8;
 | 
			
		||||
        uint8_t _block_map = (uint8_t)pgm_read_byte_near(input_block_map + map_index);
 | 
			
		||||
        uint8_t nonzero_byte = (_block_map & (1 << bit));
 | 
			
		||||
        if (nonzero_byte) {
 | 
			
		||||
            const char data = (const char)pgm_read_byte_near(input_block_list + block_index++);
 | 
			
		||||
            oled_write_raw_byte(data, i);
 | 
			
		||||
        } else {
 | 
			
		||||
            const char data = (const char)0x00;
 | 
			
		||||
            oled_write_raw_byte(data, i);
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
static void render_anim(void) {
 | 
			
		||||
    // Idle animation
 | 
			
		||||
    void animation_phase(void) {
 | 
			
		||||
        if (!tap_anim) {
 | 
			
		||||
            current_idle_frame = (current_idle_frame + 1) % NUM_IDLE_FRAMES;
 | 
			
		||||
            uint8_t idx = abs((NUM_IDLE_FRAMES - 1) - current_idle_frame);
 | 
			
		||||
            #ifdef USE_OLED_BITMAP_COMPRESSION
 | 
			
		||||
            oled_write_compressed_P(idle_block_map[idx], idle_frames[idx]);
 | 
			
		||||
            #else
 | 
			
		||||
            oled_write_raw_P(idle_frames[idx], NUM_OLED_BYTES);
 | 
			
		||||
            #endif
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    // Idle behaviour
 | 
			
		||||
    if (get_current_wpm() != 000) {  // prevent sleep
 | 
			
		||||
        oled_on();
 | 
			
		||||
        if (timer_elapsed32(anim_timer) > IDLE_FRAME_DURATION) {
 | 
			
		||||
            anim_timer = timer_read32();
 | 
			
		||||
            animation_phase();
 | 
			
		||||
        }
 | 
			
		||||
        anim_sleep = timer_read32();
 | 
			
		||||
    } else {  // Turn off screen when timer threshold elapsed or reset time since last input
 | 
			
		||||
        if (timer_elapsed32(anim_sleep) > OLED_TIMEOUT) {
 | 
			
		||||
            oled_off();
 | 
			
		||||
        } else {
 | 
			
		||||
            if (timer_elapsed32(anim_timer) > IDLE_FRAME_DURATION) {
 | 
			
		||||
                anim_timer = timer_read32();
 | 
			
		||||
                animation_phase();
 | 
			
		||||
            }
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
// Animate tap
 | 
			
		||||
bool process_record_user(uint16_t keycode, keyrecord_t *record) {
 | 
			
		||||
    #ifdef OLED_ENABLE
 | 
			
		||||
    // Check if non-mod
 | 
			
		||||
     if ((keycode >= KC_TAB && keycode <= KC_SLASH) || // Tab - Slash (Symbols, Punctuation, Space)
 | 
			
		||||
      (keycode >= KC_KP_SLASH && keycode <= KC_KP_COMMA) ||  // Keypad slash - Keypad Dot
 | 
			
		||||
      (keycode >= KC_F1 && keycode <= KC_F12)) { // F1 - F12
 | 
			
		||||
        if (record->event.pressed) {
 | 
			
		||||
            // Display tap frames
 | 
			
		||||
            tap_anim_toggle = !tap_anim_toggle;
 | 
			
		||||
            #ifdef USE_OLED_BITMAP_COMPRESSION
 | 
			
		||||
            oled_write_compressed_P(tap_block_map[tap_anim_toggle], tap_frames[tap_anim_toggle]);
 | 
			
		||||
            #else
 | 
			
		||||
            oled_write_raw_P(tap_frames[tap_anim_toggle], NUM_OLED_BYTES);
 | 
			
		||||
            #endif
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
    #endif
 | 
			
		||||
 | 
			
		||||
    return true;
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										15
									
								
								keyboards/adpenrose/akemipad/keymaps/oled_bongocat/config.h
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										15
									
								
								keyboards/adpenrose/akemipad/keymaps/oled_bongocat/config.h
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,15 @@
 | 
			
		|||
// Copyright 2022 Arturo Avila (@ADPenrose)
 | 
			
		||||
// SPDX-License-Identifier: GPL-2.0-or-later
 | 
			
		||||
 | 
			
		||||
#ifdef AUDIO_ENABLE
 | 
			
		||||
#    define NO_MUSIC_MODE
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#ifdef OLED_ENABLE
 | 
			
		||||
#    define OLED_TIMEOUT 120000
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#undef LOCKING_SUPPORT_ENABLE
 | 
			
		||||
#undef LOCKING_RESYNC_ENABLE
 | 
			
		||||
#define NO_ACTION_ONESHOT
 | 
			
		||||
#define LAYER_STATE_8BIT
 | 
			
		||||
							
								
								
									
										196
									
								
								keyboards/adpenrose/akemipad/keymaps/oled_bongocat/keymap.c
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										196
									
								
								keyboards/adpenrose/akemipad/keymaps/oled_bongocat/keymap.c
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,196 @@
 | 
			
		|||
// Copyright 2022 Arturo Avila (@ADPenrose), Christopher Courtney/Drashna Jael're (@drashna)
 | 
			
		||||
// SPDX-License-Identifier: GPL-2.0-or-later
 | 
			
		||||
 | 
			
		||||
#include QMK_KEYBOARD_H
 | 
			
		||||
#include "animation_process.h"
 | 
			
		||||
 | 
			
		||||
/* Structure that helps store settings in memory and write to the EEPROM: */
 | 
			
		||||
typedef union {
 | 
			
		||||
  uint32_t raw;
 | 
			
		||||
  struct {
 | 
			
		||||
    bool     split_zero :1;
 | 
			
		||||
    bool     split_enter :1;
 | 
			
		||||
    bool     split_plus :1;
 | 
			
		||||
  };
 | 
			
		||||
} via_layout_t;
 | 
			
		||||
 | 
			
		||||
via_layout_t via_layouts;
 | 
			
		||||
 | 
			
		||||
/* Setting up the LED matrix */
 | 
			
		||||
led_config_t g_led_config = { {
 | 
			
		||||
  // Key Matrix to LED Index
 | 
			
		||||
  { 0, 1, 2, 3, NO_LED },
 | 
			
		||||
  { 4, 5, 6, 7, NO_LED },
 | 
			
		||||
  { 8, 9, 10, 11, 12 },
 | 
			
		||||
  { 13, 14, 15, 16, NO_LED },
 | 
			
		||||
  { 17, 18, 19, 20, 21 },
 | 
			
		||||
  { 22, 23, 24, 25, 26 },
 | 
			
		||||
}, {
 | 
			
		||||
  // LED Index to Physical Position
 | 
			
		||||
  {  0,0  }, { 37,0  }, { 74,0  }, {111,0  }, {  0,34 }, { 37,34 }, { 74,34 }, {111,34 }, {  0,62 }, { 37,62 }, 
 | 
			
		||||
  { 74,62 }, {111,62 }, {120,75 }, {  0,89 }, { 37,89 }, { 74,89 }, {111,89 }, {  0,117}, { 37,117}, { 74,117}, 
 | 
			
		||||
  {111,117}, {120,130}, {  0,137}, { 18,144}, { 37,137}, { 74,144}, {111,144}
 | 
			
		||||
}, {
 | 
			
		||||
  // LED Index to Flag
 | 
			
		||||
  4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4
 | 
			
		||||
} };
 | 
			
		||||
 | 
			
		||||
/* Keymap */
 | 
			
		||||
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
 | 
			
		||||
    [0] = LAYOUT_all(
 | 
			
		||||
                  MO(1),    MO(2),     MO(3),     CK_TOGG,
 | 
			
		||||
                  KC_NUM,   KC_PSLS,   KC_PAST,   KC_PMNS,
 | 
			
		||||
                  KC_P7,    KC_P8,     KC_P9,     KC_PPLS,
 | 
			
		||||
                  KC_P4,    KC_P5,     KC_P6,     KC_PPLS,
 | 
			
		||||
                  KC_P1,    KC_P2,     KC_P3,     KC_PENT,
 | 
			
		||||
        KC_MUTE,  KC_P0,    KC_P0,     KC_PDOT,   KC_PENT 
 | 
			
		||||
    ),
 | 
			
		||||
    [1] = LAYOUT_all(
 | 
			
		||||
                  KC_TRNS,  CK_DOWN,   CK_UP,     CK_RST,
 | 
			
		||||
                  KC_TRNS,  KC_TRNS,   KC_TRNS,   KC_TRNS,
 | 
			
		||||
                  KC_TRNS,  KC_TRNS,   KC_TRNS,   KC_TRNS,
 | 
			
		||||
                  KC_TRNS,  KC_TRNS,   KC_TRNS,   KC_TRNS,
 | 
			
		||||
                  KC_TRNS,  KC_TRNS,   KC_TRNS,   KC_TRNS,
 | 
			
		||||
        KC_TRNS,  KC_TRNS,  KC_TRNS,   KC_TRNS,   KC_TRNS 
 | 
			
		||||
    ),
 | 
			
		||||
    [2] = LAYOUT_all(
 | 
			
		||||
                  KC_TRNS,  KC_TRNS,   KC_TRNS,   KC_TRNS,
 | 
			
		||||
                  KC_TRNS,  KC_TRNS,   KC_TRNS,   KC_TRNS,
 | 
			
		||||
                  KC_TRNS,  KC_TRNS,   KC_TRNS,   KC_TRNS,
 | 
			
		||||
                  KC_TRNS,  KC_TRNS,   KC_TRNS,   KC_TRNS,
 | 
			
		||||
                  KC_TRNS,  KC_TRNS,   KC_TRNS,   KC_TRNS,
 | 
			
		||||
        KC_TRNS,  KC_TRNS,  KC_TRNS,   KC_TRNS,   KC_TRNS 
 | 
			
		||||
    ),
 | 
			
		||||
    [3] = LAYOUT_all(
 | 
			
		||||
                  QK_BOOT,  KC_TRNS,   KC_TRNS,   KC_TRNS,
 | 
			
		||||
                  KC_TRNS,  KC_TRNS,   KC_TRNS,   KC_TRNS,
 | 
			
		||||
                  KC_TRNS,  KC_TRNS,   KC_TRNS,   KC_TRNS,
 | 
			
		||||
                  KC_TRNS,  KC_TRNS,   KC_TRNS,   KC_TRNS,
 | 
			
		||||
                  KC_TRNS,  KC_TRNS,   KC_TRNS,   KC_TRNS,
 | 
			
		||||
        KC_TRNS,  KC_TRNS,  KC_TRNS,   KC_TRNS,   KC_TRNS 
 | 
			
		||||
    )
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
#if defined(ENCODER_MAP_ENABLE)
 | 
			
		||||
const uint16_t PROGMEM encoder_map[][NUM_ENCODERS][2] = {
 | 
			
		||||
    [0] = { ENCODER_CCW_CW(KC_VOLD, KC_VOLU) },
 | 
			
		||||
    [1] = { ENCODER_CCW_CW(RGB_HUD, RGB_HUI) },
 | 
			
		||||
    [2] = { ENCODER_CCW_CW(RGB_SAD, RGB_SAI) },
 | 
			
		||||
    [3] = { ENCODER_CCW_CW(RGB_VAD, RGB_VAI) }
 | 
			
		||||
};
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
/* Setting layout options and debuggin text */
 | 
			
		||||
void via_set_layout_options_kb(uint32_t value) { 
 | 
			
		||||
  via_layouts.raw = value;
 | 
			
		||||
  #ifdef CONSOLE_ENABLE
 | 
			
		||||
    if (via_layouts.split_zero && via_layouts.split_enter && via_layouts.split_plus){
 | 
			
		||||
      xprintf("All three layouts are active with a value of: %d\n", value);
 | 
			
		||||
    } else if (!(via_layouts.split_zero) && via_layouts.split_enter && via_layouts.split_plus){
 | 
			
		||||
      xprintf("SE and SP layouts are active with a value of: %d\n", value);
 | 
			
		||||
    } else if (via_layouts.split_zero && !(via_layouts.split_enter) && via_layouts.split_plus){
 | 
			
		||||
      xprintf("SZ and SP layouts are active with a value of: %d\n", value);
 | 
			
		||||
    } else if (!(via_layouts.split_zero) && !(via_layouts.split_enter) && via_layouts.split_plus){
 | 
			
		||||
      xprintf("SP is the only layout active with a value of: %d\n", value);
 | 
			
		||||
    } else if (via_layouts.split_zero && via_layouts.split_enter && !(via_layouts.split_plus)){
 | 
			
		||||
      xprintf("SE and SZ layouts are active with a value of: %d\n", value);
 | 
			
		||||
    } else if (!(via_layouts.split_zero) && via_layouts.split_enter && !(via_layouts.split_plus)) {
 | 
			
		||||
      xprintf("SE is the only layout active with a value of: %d\n", value);
 | 
			
		||||
    } else if (via_layouts.split_zero && !(via_layouts.split_enter) && !(via_layouts.split_plus)){
 | 
			
		||||
      xprintf("SZ is the only layout active with a value of: %d\n", value); 
 | 
			
		||||
    } else {
 | 
			
		||||
      xprintf("The base layout is active with a value of: %d\n", value);
 | 
			
		||||
    }
 | 
			
		||||
  #endif
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/* Turing LEDs on/off depending on the layout selected on VIA */
 | 
			
		||||
bool rgb_matrix_indicators_user(void){
 | 
			
		||||
  if (via_layouts.split_zero && via_layouts.split_enter && via_layouts.split_plus){
 | 
			
		||||
    rgb_matrix_set_color(12, 0, 0, 0);
 | 
			
		||||
    rgb_matrix_set_color(21, 0, 0, 0);
 | 
			
		||||
    rgb_matrix_set_color(23, 0, 0, 0);
 | 
			
		||||
  } else if (!(via_layouts.split_zero) && via_layouts.split_enter && via_layouts.split_plus){
 | 
			
		||||
    rgb_matrix_set_color(12, 0, 0, 0);
 | 
			
		||||
    rgb_matrix_set_color(21, 0, 0, 0);
 | 
			
		||||
    rgb_matrix_set_color(22, 0, 0, 0);
 | 
			
		||||
    rgb_matrix_set_color(24, 0, 0, 0);
 | 
			
		||||
  } else if (via_layouts.split_zero && !(via_layouts.split_enter) && via_layouts.split_plus){
 | 
			
		||||
    rgb_matrix_set_color(12, 0, 0, 0);
 | 
			
		||||
    rgb_matrix_set_color(20, 0, 0, 0);
 | 
			
		||||
    rgb_matrix_set_color(23, 0, 0, 0);
 | 
			
		||||
    rgb_matrix_set_color(26, 0, 0, 0);
 | 
			
		||||
  } else if (!(via_layouts.split_zero) && !(via_layouts.split_enter) && via_layouts.split_plus){
 | 
			
		||||
    rgb_matrix_set_color(12, 0, 0, 0);
 | 
			
		||||
    rgb_matrix_set_color(20, 0, 0, 0);
 | 
			
		||||
    rgb_matrix_set_color(22, 0, 0, 0);
 | 
			
		||||
    rgb_matrix_set_color(24, 0, 0, 0);
 | 
			
		||||
    rgb_matrix_set_color(26, 0, 0, 0);
 | 
			
		||||
  } else if (via_layouts.split_zero && via_layouts.split_enter && !(via_layouts.split_plus)){
 | 
			
		||||
    rgb_matrix_set_color(11, 0, 0, 0);
 | 
			
		||||
    rgb_matrix_set_color(16, 0, 0, 0);
 | 
			
		||||
    rgb_matrix_set_color(21, 0, 0, 0);
 | 
			
		||||
    rgb_matrix_set_color(23, 0, 0, 0);
 | 
			
		||||
  } else if (!(via_layouts.split_zero) && via_layouts.split_enter && !(via_layouts.split_plus)) {
 | 
			
		||||
    rgb_matrix_set_color(11, 0, 0, 0);
 | 
			
		||||
    rgb_matrix_set_color(16, 0, 0, 0);
 | 
			
		||||
    rgb_matrix_set_color(21, 0, 0, 0);
 | 
			
		||||
    rgb_matrix_set_color(22, 0, 0, 0);
 | 
			
		||||
    rgb_matrix_set_color(24, 0, 0, 0);
 | 
			
		||||
  } else if (via_layouts.split_zero && !(via_layouts.split_enter) && !(via_layouts.split_plus)){
 | 
			
		||||
    rgb_matrix_set_color(11, 0, 0, 0);
 | 
			
		||||
    rgb_matrix_set_color(16, 0, 0, 0);
 | 
			
		||||
    rgb_matrix_set_color(20, 0, 0, 0);
 | 
			
		||||
    rgb_matrix_set_color(23, 0, 0, 0);
 | 
			
		||||
    rgb_matrix_set_color(26, 0, 0, 0);
 | 
			
		||||
  } else {
 | 
			
		||||
    rgb_matrix_set_color(11, 0, 0, 0);
 | 
			
		||||
    rgb_matrix_set_color(16, 0, 0, 0);
 | 
			
		||||
    rgb_matrix_set_color(20, 0, 0, 0);
 | 
			
		||||
    rgb_matrix_set_color(22, 0, 0, 0);
 | 
			
		||||
    rgb_matrix_set_color(24, 0, 0, 0);
 | 
			
		||||
    rgb_matrix_set_color(26, 0, 0, 0);
 | 
			
		||||
  }
 | 
			
		||||
  return false;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/* OLED stuff */
 | 
			
		||||
#ifdef OLED_ENABLE
 | 
			
		||||
bool oled_task_user(void) { 
 | 
			
		||||
    render_anim();
 | 
			
		||||
    
 | 
			
		||||
    // WPM render
 | 
			
		||||
    oled_set_cursor(1, 0);
 | 
			
		||||
    oled_write_P(PSTR(">"), false);
 | 
			
		||||
    oled_write(get_u8_str(get_current_wpm(), '0'), false);
 | 
			
		||||
 | 
			
		||||
    // Host Keyboard LED Status
 | 
			
		||||
    led_t led_state = host_keyboard_led_state();
 | 
			
		||||
    oled_set_cursor(0,14);
 | 
			
		||||
    oled_write_P(led_state.caps_lock ? PSTR("CPSLK") :"    ", true);
 | 
			
		||||
    oled_set_cursor(0,15);
 | 
			
		||||
    oled_write_P(led_state.num_lock ? PSTR("NUMLK") :"    ", true);
 | 
			
		||||
    
 | 
			
		||||
  return false;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/* WPM calculation considerations */
 | 
			
		||||
bool wpm_keycode_user(uint16_t keycode) {
 | 
			
		||||
  if ((keycode >= QK_MOD_TAP && keycode <= QK_MOD_TAP_MAX) ||
 | 
			
		||||
      (keycode >= QK_LAYER_TAP && keycode <= QK_LAYER_TAP_MAX) ||
 | 
			
		||||
      (keycode >= QK_MODS && keycode <= QK_MODS_MAX)) {
 | 
			
		||||
    keycode = keycode & 0xFF;
 | 
			
		||||
  } else if (keycode > 0xFF) {
 | 
			
		||||
    keycode = 0;
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  // Include keys in WPM calculation
 | 
			
		||||
  if ((keycode >= KC_TAB && keycode <= KC_SLASH) || // Tab - Slash (Symbols, Punctuation, Space)
 | 
			
		||||
      (keycode >= KC_KP_SLASH && keycode <= KC_KP_COMMA) ||  // Keypad numbers - Keypad Dot
 | 
			
		||||
      (keycode >= KC_F1 && keycode <= KC_F12)) { // F1 - F12
 | 
			
		||||
    return true;
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  return false;
 | 
			
		||||
}
 | 
			
		||||
#endif
 | 
			
		||||
							
								
								
									
										19
									
								
								keyboards/adpenrose/akemipad/keymaps/oled_bongocat/readme.md
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										19
									
								
								keyboards/adpenrose/akemipad/keymaps/oled_bongocat/readme.md
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,19 @@
 | 
			
		|||
# The Bongo Cat VIA-compatible keymap for the AkemiPad
 | 
			
		||||
 | 
			
		||||
# Features
 | 
			
		||||
- Audio Click capabilitiy.
 | 
			
		||||
- RGB Matrix Lighting (cycles left-right and up-down).
 | 
			
		||||
- LEDs turn on and off depending on the layout selected on the VIA UI.
 | 
			
		||||
- Encoder Map feature.
 | 
			
		||||
- Bongo Cat animation with WPM counter and Caps Lock/Num Lock indicators.
 | 
			
		||||
 | 
			
		||||
This keymap is optimized for a numpad and can fit the RGB matrix (with 
 | 
			
		||||
very few animations due to AVR constraints), the encoder map, the audio 
 | 
			
		||||
click feature and the display of the OLED animations. This was possible 
 | 
			
		||||
thanks to the [squeez-o](https://github.com/nullbitsco/squeez-o) compression tool.
 | 
			
		||||
 | 
			
		||||

 | 
			
		||||
 | 
			
		||||
___
 | 
			
		||||
 | 
			
		||||
###### *This keymap is an adaptation designed to work with the AkemiPad. The reference keymap used was created for the Nibble keyboard, and you can check it [here](https://github.com/qmk/qmk_firmware/tree/master/keyboards/nullbitsco/nibble/keymaps/oled_bongocat).*
 | 
			
		||||
| 
						 | 
				
			
			@ -0,0 +1,9 @@
 | 
			
		|||
VIA_ENABLE = yes
 | 
			
		||||
LTO_ENABLE = yes
 | 
			
		||||
SPACE_CADET_ENABLE = no
 | 
			
		||||
GRAVE_ESC_ENABLE = no 
 | 
			
		||||
MAGIC_ENABLE = no
 | 
			
		||||
ENCODER_MAP_ENABLE = yes
 | 
			
		||||
OLED_ENABLE = yes
 | 
			
		||||
OLED_DRIVER = SSD1306
 | 
			
		||||
WPM_ENABLE = yes
 | 
			
		||||
							
								
								
									
										154
									
								
								keyboards/adpenrose/akemipad/keymaps/via/keymap.c
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										154
									
								
								keyboards/adpenrose/akemipad/keymaps/via/keymap.c
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,154 @@
 | 
			
		|||
// Copyright 2022 Arturo Avila (@ADPenrose), Christopher Courtney/Drashna Jael're (@drashna)
 | 
			
		||||
// SPDX-License-Identifier: GPL-2.0-or-later
 | 
			
		||||
 | 
			
		||||
#include QMK_KEYBOARD_H
 | 
			
		||||
 | 
			
		||||
/* Structure that helps store settings in memory and write to the EEPROM: */
 | 
			
		||||
typedef union {
 | 
			
		||||
  uint32_t raw;
 | 
			
		||||
  struct {
 | 
			
		||||
    bool     split_zero :1;
 | 
			
		||||
    bool     split_enter :1;
 | 
			
		||||
    bool     split_plus :1;
 | 
			
		||||
  };
 | 
			
		||||
} via_layout_t;
 | 
			
		||||
 | 
			
		||||
via_layout_t via_layouts;
 | 
			
		||||
 | 
			
		||||
/* Setting up the LED matrix */
 | 
			
		||||
led_config_t g_led_config = { {
 | 
			
		||||
  // Key Matrix to LED Index
 | 
			
		||||
  { 0, 1, 2, 3, NO_LED },
 | 
			
		||||
  { 4, 5, 6, 7, NO_LED },
 | 
			
		||||
  { 8, 9, 10, 11, 12 },
 | 
			
		||||
  { 13, 14, 15, 16, NO_LED },
 | 
			
		||||
  { 17, 18, 19, 20, 21 },
 | 
			
		||||
  { 22, 23, 24, 25, 26 },
 | 
			
		||||
}, {
 | 
			
		||||
  // LED Index to Physical Position
 | 
			
		||||
  {  0,0  }, { 37,0  }, { 74,0  }, {111,0  }, {  0,34 }, { 37,34 }, { 74,34 }, {111,34 }, {  0,62 }, { 37,62 }, 
 | 
			
		||||
  { 74,62 }, {111,62 }, {120,75 }, {  0,89 }, { 37,89 }, { 74,89 }, {111,89 }, {  0,117}, { 37,117}, { 74,117}, 
 | 
			
		||||
  {111,117}, {120,130}, {  0,137}, { 18,144}, { 37,137}, { 74,144}, {111,144}
 | 
			
		||||
}, {
 | 
			
		||||
  // LED Index to Flag
 | 
			
		||||
  4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4
 | 
			
		||||
} };
 | 
			
		||||
 | 
			
		||||
/* Keymap */
 | 
			
		||||
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
 | 
			
		||||
    [0] = LAYOUT_all(
 | 
			
		||||
                  MO(1),    MO(2),     MO(3),     KC_DEL,
 | 
			
		||||
                  KC_NUM,   KC_PSLS,   KC_PAST,   KC_PMNS,
 | 
			
		||||
                  KC_P7,    KC_P8,     KC_P9,     KC_PPLS,
 | 
			
		||||
                  KC_P4,    KC_P5,     KC_P6,     KC_PPLS,
 | 
			
		||||
                  KC_P1,    KC_P2,     KC_P3,     KC_PENT,
 | 
			
		||||
        KC_MUTE,  KC_P0,    KC_P0,     KC_PDOT,   KC_PENT 
 | 
			
		||||
    ),
 | 
			
		||||
    [1] = LAYOUT_all(
 | 
			
		||||
                  KC_TRNS,  CK_DOWN,   CK_UP,     CK_RST,
 | 
			
		||||
                  MU_TOG,   MU_MOD,    KC_TRNS,   KC_TRNS,
 | 
			
		||||
                  KC_TRNS,  KC_TRNS,   KC_TRNS,   KC_TRNS,
 | 
			
		||||
                  KC_TRNS,  KC_TRNS,   KC_TRNS,   KC_TRNS,
 | 
			
		||||
                  KC_TRNS,  KC_TRNS,   KC_TRNS,   KC_TRNS,
 | 
			
		||||
        CK_TOGG,  KC_TRNS,  KC_TRNS,   KC_TRNS,   KC_TRNS 
 | 
			
		||||
    ),
 | 
			
		||||
    [2] = LAYOUT_all(
 | 
			
		||||
                  KC_TRNS,  KC_TRNS,   KC_TRNS,   KC_TRNS,
 | 
			
		||||
                  KC_TRNS,  KC_TRNS,   KC_TRNS,   KC_TRNS,
 | 
			
		||||
                  KC_TRNS,  KC_TRNS,   KC_TRNS,   KC_TRNS,
 | 
			
		||||
                  KC_TRNS,  KC_TRNS,   KC_TRNS,   KC_TRNS,
 | 
			
		||||
                  KC_TRNS,  KC_TRNS,   KC_TRNS,   KC_TRNS,
 | 
			
		||||
        KC_TRNS,  KC_TRNS,  KC_TRNS,   KC_TRNS,   KC_TRNS 
 | 
			
		||||
    ),
 | 
			
		||||
    [3] = LAYOUT_all(
 | 
			
		||||
                  QK_BOOT,  KC_TRNS,   KC_TRNS,   KC_TRNS,
 | 
			
		||||
                  KC_TRNS,  KC_TRNS,   KC_TRNS,   KC_TRNS,
 | 
			
		||||
                  KC_TRNS,  KC_TRNS,   KC_TRNS,   KC_TRNS,
 | 
			
		||||
                  KC_TRNS,  KC_TRNS,   KC_TRNS,   KC_TRNS,
 | 
			
		||||
                  KC_TRNS,  KC_TRNS,   KC_TRNS,   KC_TRNS,
 | 
			
		||||
        KC_TRNS,  KC_TRNS,  KC_TRNS,   KC_TRNS,   KC_TRNS 
 | 
			
		||||
    )
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
#if defined(ENCODER_MAP_ENABLE)
 | 
			
		||||
const uint16_t PROGMEM encoder_map[][NUM_ENCODERS][2] = {
 | 
			
		||||
    [0] = { ENCODER_CCW_CW(KC_VOLD, KC_VOLU) },
 | 
			
		||||
    [1] = { ENCODER_CCW_CW(RGB_HUD, RGB_HUI) },
 | 
			
		||||
    [2] = { ENCODER_CCW_CW(RGB_SAD, RGB_SAI) },
 | 
			
		||||
    [3] = { ENCODER_CCW_CW(RGB_VAD, RGB_VAI) }
 | 
			
		||||
};
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
/* Setting layout options and debugging text indicators */
 | 
			
		||||
void via_set_layout_options_kb(uint32_t value) { 
 | 
			
		||||
  via_layouts.raw = value;
 | 
			
		||||
  #ifdef CONSOLE_ENABLE
 | 
			
		||||
    if (via_layouts.split_zero && via_layouts.split_enter && via_layouts.split_plus){
 | 
			
		||||
      xprintf("All three layouts are active with a value of: %d\n", value);
 | 
			
		||||
    } else if (!(via_layouts.split_zero) && via_layouts.split_enter && via_layouts.split_plus){
 | 
			
		||||
      xprintf("SE and SP layouts are active with a value of: %d\n", value);
 | 
			
		||||
    } else if (via_layouts.split_zero && !(via_layouts.split_enter) && via_layouts.split_plus){
 | 
			
		||||
      xprintf("SZ and SP layouts are active with a value of: %d\n", value);
 | 
			
		||||
    } else if (!(via_layouts.split_zero) && !(via_layouts.split_enter) && via_layouts.split_plus){
 | 
			
		||||
      xprintf("SP is the only layout active with a value of: %d\n", value);
 | 
			
		||||
    } else if (via_layouts.split_zero && via_layouts.split_enter && !(via_layouts.split_plus)){
 | 
			
		||||
      xprintf("SE and SZ layouts are active with a value of: %d\n", value);
 | 
			
		||||
    } else if (!(via_layouts.split_zero) && via_layouts.split_enter && !(via_layouts.split_plus)) {
 | 
			
		||||
      xprintf("SE is the only layout active with a value of: %d\n", value);
 | 
			
		||||
    } else if (via_layouts.split_zero && !(via_layouts.split_enter) && !(via_layouts.split_plus)){
 | 
			
		||||
      xprintf("SZ is the only layout active with a value of: %d\n", value); 
 | 
			
		||||
    } else {
 | 
			
		||||
      xprintf("The base layout is active with a value of: %d\n", value);
 | 
			
		||||
    }
 | 
			
		||||
  #endif
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/* Turing LEDs on/off depending on the layout selected on VIA */
 | 
			
		||||
bool rgb_matrix_indicators_user(void){
 | 
			
		||||
  if (via_layouts.split_zero && via_layouts.split_enter && via_layouts.split_plus){
 | 
			
		||||
    rgb_matrix_set_color(12, 0, 0, 0);
 | 
			
		||||
    rgb_matrix_set_color(21, 0, 0, 0);
 | 
			
		||||
    rgb_matrix_set_color(23, 0, 0, 0);
 | 
			
		||||
  } else if (!(via_layouts.split_zero) && via_layouts.split_enter && via_layouts.split_plus){
 | 
			
		||||
    rgb_matrix_set_color(12, 0, 0, 0);
 | 
			
		||||
    rgb_matrix_set_color(21, 0, 0, 0);
 | 
			
		||||
    rgb_matrix_set_color(22, 0, 0, 0);
 | 
			
		||||
    rgb_matrix_set_color(24, 0, 0, 0);
 | 
			
		||||
  } else if (via_layouts.split_zero && !(via_layouts.split_enter) && via_layouts.split_plus){
 | 
			
		||||
    rgb_matrix_set_color(12, 0, 0, 0);
 | 
			
		||||
    rgb_matrix_set_color(20, 0, 0, 0);
 | 
			
		||||
    rgb_matrix_set_color(23, 0, 0, 0);
 | 
			
		||||
    rgb_matrix_set_color(26, 0, 0, 0);
 | 
			
		||||
  } else if (!(via_layouts.split_zero) && !(via_layouts.split_enter) && via_layouts.split_plus){
 | 
			
		||||
    rgb_matrix_set_color(12, 0, 0, 0);
 | 
			
		||||
    rgb_matrix_set_color(20, 0, 0, 0);
 | 
			
		||||
    rgb_matrix_set_color(22, 0, 0, 0);
 | 
			
		||||
    rgb_matrix_set_color(24, 0, 0, 0);
 | 
			
		||||
    rgb_matrix_set_color(26, 0, 0, 0);
 | 
			
		||||
  } else if (via_layouts.split_zero && via_layouts.split_enter && !(via_layouts.split_plus)){
 | 
			
		||||
    rgb_matrix_set_color(11, 0, 0, 0);
 | 
			
		||||
    rgb_matrix_set_color(16, 0, 0, 0);
 | 
			
		||||
    rgb_matrix_set_color(21, 0, 0, 0);
 | 
			
		||||
    rgb_matrix_set_color(23, 0, 0, 0);
 | 
			
		||||
  } else if (!(via_layouts.split_zero) && via_layouts.split_enter && !(via_layouts.split_plus)) {
 | 
			
		||||
    rgb_matrix_set_color(11, 0, 0, 0);
 | 
			
		||||
    rgb_matrix_set_color(16, 0, 0, 0);
 | 
			
		||||
    rgb_matrix_set_color(21, 0, 0, 0);
 | 
			
		||||
    rgb_matrix_set_color(22, 0, 0, 0);
 | 
			
		||||
    rgb_matrix_set_color(24, 0, 0, 0);
 | 
			
		||||
  } else if (via_layouts.split_zero && !(via_layouts.split_enter) && !(via_layouts.split_plus)){
 | 
			
		||||
    rgb_matrix_set_color(11, 0, 0, 0);
 | 
			
		||||
    rgb_matrix_set_color(16, 0, 0, 0);
 | 
			
		||||
    rgb_matrix_set_color(20, 0, 0, 0);
 | 
			
		||||
    rgb_matrix_set_color(23, 0, 0, 0);
 | 
			
		||||
    rgb_matrix_set_color(26, 0, 0, 0);
 | 
			
		||||
  } else {
 | 
			
		||||
    rgb_matrix_set_color(11, 0, 0, 0);
 | 
			
		||||
    rgb_matrix_set_color(16, 0, 0, 0);
 | 
			
		||||
    rgb_matrix_set_color(20, 0, 0, 0);
 | 
			
		||||
    rgb_matrix_set_color(22, 0, 0, 0);
 | 
			
		||||
    rgb_matrix_set_color(24, 0, 0, 0);
 | 
			
		||||
    rgb_matrix_set_color(26, 0, 0, 0);
 | 
			
		||||
  }
 | 
			
		||||
  return false;
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										15
									
								
								keyboards/adpenrose/akemipad/keymaps/via/readme.md
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										15
									
								
								keyboards/adpenrose/akemipad/keymaps/via/readme.md
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,15 @@
 | 
			
		|||
# The VIA-compatible keymap for the AkemiPad
 | 
			
		||||
 | 
			
		||||
# Features
 | 
			
		||||
- Audio Click and Music Mode capabilities.
 | 
			
		||||
- RGB Matrix Lighting (cycles left-right and up-down).
 | 
			
		||||
- LEDs turn on and off depending on the layout selected on the VIA UI.
 | 
			
		||||
- Encoder Map feature.
 | 
			
		||||
 | 
			
		||||
## The star of the show: the "RGB matrix layout-dependant" capability
 | 
			
		||||
Inside of this keymap resides the first implementation (AFAIK) of a LED matrix that turns
 | 
			
		||||
LEDs on and off, depending on the layout/layouts activated through VIA. The available
 | 
			
		||||
layouts are as follows:
 | 
			
		||||
 | 
			
		||||
[](https://tinyurl.com/KLE-AkemiPad)
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										3
									
								
								keyboards/adpenrose/akemipad/keymaps/via/rules.mk
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										3
									
								
								keyboards/adpenrose/akemipad/keymaps/via/rules.mk
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,3 @@
 | 
			
		|||
VIA_ENABLE = yes
 | 
			
		||||
LTO_ENABLE = yes
 | 
			
		||||
ENCODER_MAP_ENABLE = yes
 | 
			
		||||
							
								
								
									
										27
									
								
								keyboards/adpenrose/akemipad/readme.md
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										27
									
								
								keyboards/adpenrose/akemipad/readme.md
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,27 @@
 | 
			
		|||
# AkemiPad
 | 
			
		||||
 | 
			
		||||

 | 
			
		||||
 | 
			
		||||
A numpad powered by a ProMicro (currently ATmega based), with multiple layout options and support for an encoder, a piezo buzzer, an OLED, and per-key RGB lighting.
 | 
			
		||||
 | 
			
		||||
* Keyboard Maintainer: [Arturo Avila](https://github.com/ADPenrose)
 | 
			
		||||
* Hardware Supported: AkemiPad v1 PCB
 | 
			
		||||
* Hardware Availability: [Arturo Avila](https://github.com/ADPenrose) 
 | 
			
		||||
 | 
			
		||||
Make example for this keyboard (after setting up your build environment):
 | 
			
		||||
 | 
			
		||||
    make adpenrose/akemipad:default
 | 
			
		||||
 | 
			
		||||
Flashing example for this keyboard:
 | 
			
		||||
 | 
			
		||||
    make adpenrose/akemipad:default:flash
 | 
			
		||||
 | 
			
		||||
See the [build environment setup](https://docs.qmk.fm/#/getting_started_build_tools) and the [make instructions](https://docs.qmk.fm/#/getting_started_make_guide) for more information. Brand new to QMK? Start with our [Complete Newbs Guide](https://docs.qmk.fm/#/newbs).
 | 
			
		||||
 | 
			
		||||
## Bootloader
 | 
			
		||||
 | 
			
		||||
Enter the bootloader in 3 ways:
 | 
			
		||||
 | 
			
		||||
* **Bootmagic reset**: Hold down the key at (0,0) in the matrix (usually the top left key or Escape) and plug in the keyboard
 | 
			
		||||
* **Physical reset button**: Quickly press two times the button on the back of the PCB
 | 
			
		||||
* **Keycode in layout**: Press the key mapped to `QK_BOOT` if it is available
 | 
			
		||||
							
								
								
									
										21
									
								
								keyboards/adpenrose/akemipad/rules.mk
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										21
									
								
								keyboards/adpenrose/akemipad/rules.mk
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,21 @@
 | 
			
		|||
# MCU name
 | 
			
		||||
MCU = atmega32u4
 | 
			
		||||
 | 
			
		||||
# Bootloader selection
 | 
			
		||||
BOOTLOADER = caterina
 | 
			
		||||
 | 
			
		||||
# Build Options
 | 
			
		||||
#   change yes to no to disable
 | 
			
		||||
#
 | 
			
		||||
BOOTMAGIC_ENABLE = yes      # Enable Bootmagic Lite
 | 
			
		||||
MOUSEKEY_ENABLE = no        # Mouse keys
 | 
			
		||||
EXTRAKEY_ENABLE = yes       # Audio control and System control
 | 
			
		||||
CONSOLE_ENABLE = no         # Console for debug
 | 
			
		||||
COMMAND_ENABLE = no         # Commands for debug and configuration
 | 
			
		||||
NKRO_ENABLE = no            # Enable N-Key Rollover
 | 
			
		||||
BACKLIGHT_ENABLE = no       # Enable keyboard backlight functionality
 | 
			
		||||
RGBLIGHT_ENABLE = no        # Enable keyboard RGB underglow
 | 
			
		||||
AUDIO_ENABLE = yes          # Audio output
 | 
			
		||||
RGB_MATRIX_ENABLE = yes
 | 
			
		||||
RGB_MATRIX_DRIVER = WS2812
 | 
			
		||||
ENCODER_ENABLE = yes
 | 
			
		||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue