forked from mirrors/qmk_firmware
[Keyboard] Add Pix (#11154)
* Add nakal4x keyboard firmware * Fix VIA config * Setup OLED * Rename to pix * Rename via.json to info.json * Update keyboards/sendyyeah/pix/config.h remove obsolete value as suggested by drashna Co-authored-by: Drashna Jaelre <drashna@live.com> * Add GPL Like license header * Remove unused bootloader list * Change URL * Update readme * Delete via info.json * Add GPL2+ license header on via keymap * Update keyboards/sendyyeah/pix/rules.mk Co-authored-by: Ryan <fauxpark@gmail.com> * Update keyboards/sendyyeah/pix/keymaps/default/glcdfont.c Co-authored-by: Ryan <fauxpark@gmail.com> * Add GPL2+ license header on via keymap * Add image * Remove local drivers * Remove unused method on keymap files * Change project name on keymap readme files * Update keyboards/sendyyeah/pix/rules.mk Co-authored-by: Ryan <fauxpark@gmail.com> * Update keyboards/sendyyeah/pix/readme.md Co-authored-by: Ryan <fauxpark@gmail.com> * Update keyboards/sendyyeah/pix/keymaps/default/glcdfont.c Co-authored-by: Ryan <fauxpark@gmail.com> * Update keyboards/sendyyeah/pix/keymaps/default/keymap.c Co-authored-by: Ryan <fauxpark@gmail.com> * Update keyboards/sendyyeah/pix/keymaps/via/keymap.c Co-authored-by: Sendy Aditya Suryana <sendy.suryana@go-jek.com> Co-authored-by: Drashna Jaelre <drashna@live.com> Co-authored-by: Ryan <fauxpark@gmail.com>
This commit is contained in:
parent
3dde354736
commit
3b06ab51e5
12 changed files with 903 additions and 0 deletions
63
keyboards/sendyyeah/pix/config.h
Normal file
63
keyboards/sendyyeah/pix/config.h
Normal file
|
@ -0,0 +1,63 @@
|
|||
/* Copyright 2020 sendyyeah
|
||||
*
|
||||
* 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 "config_common.h"
|
||||
|
||||
/* USB Device descriptor parameter */
|
||||
#define VENDOR_ID 0x5359
|
||||
#define PRODUCT_ID 0x4e34
|
||||
#define DEVICE_VER 0x0001
|
||||
#define MANUFACTURER sendyyeah
|
||||
#define PRODUCT Pix
|
||||
|
||||
/* key matrix size */
|
||||
#define MATRIX_ROWS 1
|
||||
#define MATRIX_COLS 5
|
||||
|
||||
#define OLED_FONT_H "keymaps/default/glcdfont.c"
|
||||
#define OLED_TIMEOUT 600000 // Turn of after 10 minutes
|
||||
|
||||
/* Keyboard Matrix Assignments */
|
||||
#define DIRECT_PINS { \
|
||||
{ C6, D7, E6, B4, F6 }, \
|
||||
}
|
||||
|
||||
#define ENCODERS_PAD_A { B1 }
|
||||
#define ENCODERS_PAD_B { B3 }
|
||||
|
||||
/* Set 0 if debouncing isn't needed */
|
||||
#define DEBOUNCE 5
|
||||
|
||||
/* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */
|
||||
#define LOCKING_SUPPORT_ENABLE
|
||||
|
||||
/* Locking resynchronize hack */
|
||||
#define LOCKING_RESYNC_ENABLE
|
||||
|
||||
// #define RGB_DI_PIN B5
|
||||
// #ifdef RGB_DI_PIN
|
||||
// #define RGBLED_NUM 5
|
||||
// #define RGBLIGHT_HUE_STEP 8
|
||||
// #define RGBLIGHT_SAT_STEP 8
|
||||
// #define RGBLIGHT_VAL_STEP 8
|
||||
// #define RGBLIGHT_LIMIT_VAL 255 /* The maximum brightness level */
|
||||
// #define RGBLIGHT_SLEEP /* If defined, the RGB lighting will be switched off when the host goes to sleep */
|
||||
// #define RGBLIGHT_ANIMATIONS
|
||||
// #define RGBLIGHT_LAYERS
|
||||
// #define RGBLIGHT_LAYER_BLINK
|
||||
// #endif
|
18
keyboards/sendyyeah/pix/info.json
Normal file
18
keyboards/sendyyeah/pix/info.json
Normal file
|
@ -0,0 +1,18 @@
|
|||
{
|
||||
"keyboard_name": "Pix",
|
||||
"url": "https://github.com/sendz/pix",
|
||||
"maintainer": "sendz",
|
||||
"width": 5,
|
||||
"height": 1,
|
||||
"layouts": {
|
||||
"LAYOUT": {
|
||||
"layout": [
|
||||
{"x":0, "y":0},
|
||||
{"x":1, "y":0},
|
||||
{"x":2, "y":0},
|
||||
{"x":3, "y":0},
|
||||
{"x":4, "y":0}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
244
keyboards/sendyyeah/pix/keymaps/default/glcdfont.c
Normal file
244
keyboards/sendyyeah/pix/keymaps/default/glcdfont.c
Normal file
|
@ -0,0 +1,244 @@
|
|||
/* Copyright 2020 sendyyeah
|
||||
*
|
||||
* 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 "progmem.h"
|
||||
|
||||
const unsigned char font[] PROGMEM = {
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x3E, 0x5B, 0x4F, 0x5B, 0x3E, 0x00,
|
||||
0x3E, 0x6B, 0x4F, 0x6B, 0x3E, 0x00,
|
||||
0x1C, 0x3E, 0x7C, 0x3E, 0x1C, 0x00,
|
||||
0x18, 0x3C, 0x7E, 0x3C, 0x18, 0x00,
|
||||
0x1C, 0x57, 0x7D, 0x57, 0x1C, 0x00,
|
||||
0x1C, 0x5E, 0x7F, 0x5E, 0x1C, 0x00,
|
||||
0x00, 0x18, 0x3C, 0x18, 0x00, 0x00,
|
||||
0xFF, 0xE7, 0xC3, 0xE7, 0xFF, 0x00,
|
||||
0x00, 0x18, 0x24, 0x18, 0x00, 0x00,
|
||||
0xFF, 0xE7, 0xDB, 0xE7, 0xFF, 0x00,
|
||||
0x30, 0x48, 0x3A, 0x06, 0x0E, 0x00,
|
||||
0x26, 0x29, 0x79, 0x29, 0x26, 0x00,
|
||||
0x40, 0x7F, 0x05, 0x05, 0x07, 0x00,
|
||||
0x40, 0x7F, 0x05, 0x25, 0x3F, 0x00,
|
||||
0x5A, 0x3C, 0x66, 0x3C, 0x5A, 0x00,
|
||||
0x7F, 0x3E, 0x1C, 0x1C, 0x08, 0x00,
|
||||
0x08, 0x1C, 0x1C, 0x3E, 0x7F, 0x00,
|
||||
0x14, 0x22, 0x7F, 0x22, 0x14, 0x00,
|
||||
0x5F, 0x5F, 0x00, 0x5F, 0x5F, 0x00,
|
||||
0x06, 0x09, 0x7F, 0x01, 0x7F, 0x00,
|
||||
0x00, 0x66, 0x89, 0x95, 0x6A, 0x00,
|
||||
0x60, 0x60, 0x60, 0x60, 0x60, 0x00,
|
||||
0x94, 0xA2, 0xFF, 0xA2, 0x94, 0x00,
|
||||
0x08, 0x04, 0x7E, 0x04, 0x08, 0x00,
|
||||
0x10, 0x20, 0x7E, 0x20, 0x10, 0x00,
|
||||
0x08, 0x08, 0x2A, 0x1C, 0x08, 0x00,
|
||||
0x08, 0x1C, 0x2A, 0x08, 0x08, 0x00,
|
||||
0x1E, 0x10, 0x10, 0x10, 0x10, 0x00,
|
||||
0x0C, 0x1E, 0x0C, 0x1E, 0x0C, 0x00,
|
||||
0x30, 0x38, 0x3E, 0x38, 0x30, 0x00,
|
||||
0x06, 0x0E, 0x3E, 0x0E, 0x06, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x5E, 0x00, 0x00, 0x00,
|
||||
0x00, 0x06, 0x00, 0x06, 0x00, 0x00,
|
||||
0x14, 0x3E, 0x14, 0x3E, 0x14, 0x00,
|
||||
0x24, 0x2A, 0x7F, 0x2A, 0x12, 0x00,
|
||||
0x26, 0x16, 0x08, 0x34, 0x32, 0x00,
|
||||
0x36, 0x4A, 0x56, 0x20, 0x50, 0x00,
|
||||
0x00, 0x0A, 0x06, 0x00, 0x00, 0x00,
|
||||
0x00, 0x3C, 0x42, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x42, 0x3C, 0x00, 0x00,
|
||||
0x2A, 0x1C, 0x3E, 0x1C, 0x2A, 0x00,
|
||||
0x08, 0x08, 0x3E, 0x08, 0x08, 0x00,
|
||||
0x00, 0xA0, 0x60, 0x00, 0x00, 0x00,
|
||||
0x08, 0x08, 0x08, 0x08, 0x08, 0x00,
|
||||
0x00, 0x00, 0x60, 0x60, 0x00, 0x00,
|
||||
0x20, 0x10, 0x08, 0x04, 0x02, 0x00,
|
||||
0x3C, 0x42, 0x42, 0x42, 0x3C, 0x00,
|
||||
0x00, 0x44, 0x7E, 0x40, 0x00, 0x00,
|
||||
0x64, 0x52, 0x52, 0x52, 0x4C, 0x00,
|
||||
0x22, 0x42, 0x4A, 0x4A, 0x36, 0x00,
|
||||
0x38, 0x24, 0x22, 0x7E, 0x20, 0x00,
|
||||
0x2E, 0x4A, 0x4A, 0x4A, 0x32, 0x00,
|
||||
0x3C, 0x4A, 0x4A, 0x4A, 0x32, 0x00,
|
||||
0x02, 0x02, 0x62, 0x1A, 0x06, 0x00,
|
||||
0x34, 0x4A, 0x4A, 0x4A, 0x34, 0x00,
|
||||
0x4C, 0x52, 0x52, 0x52, 0x3C, 0x00,
|
||||
0x00, 0x00, 0x14, 0x00, 0x00, 0x00,
|
||||
0x00, 0x40, 0x34, 0x00, 0x00, 0x00,
|
||||
0x00, 0x08, 0x14, 0x22, 0x00, 0x00,
|
||||
0x14, 0x14, 0x14, 0x14, 0x14, 0x00,
|
||||
0x00, 0x00, 0x22, 0x14, 0x08, 0x00,
|
||||
0x00, 0x04, 0x52, 0x0A, 0x04, 0x00,
|
||||
0x3E, 0x41, 0x5D, 0x59, 0x4E, 0x00,
|
||||
0x7C, 0x12, 0x12, 0x12, 0x7C, 0x00,
|
||||
0x7E, 0x4A, 0x4A, 0x4A, 0x34, 0x00,
|
||||
0x3C, 0x42, 0x42, 0x42, 0x42, 0x00,
|
||||
0x7E, 0x42, 0x42, 0x42, 0x3C, 0x00,
|
||||
0x7E, 0x4A, 0x4A, 0x4A, 0x4A, 0x00,
|
||||
0x7E, 0x0A, 0x0A, 0x0A, 0x0A, 0x00,
|
||||
0x3C, 0x42, 0x42, 0x52, 0x72, 0x00,
|
||||
0x7E, 0x08, 0x08, 0x08, 0x7E, 0x00,
|
||||
0x00, 0x00, 0x7E, 0x00, 0x00, 0x00,
|
||||
0x20, 0x40, 0x42, 0x3E, 0x00, 0x00,
|
||||
0x7E, 0x10, 0x08, 0x14, 0x62, 0x00,
|
||||
0x7E, 0x40, 0x40, 0x40, 0x40, 0x00,
|
||||
0x7E, 0x04, 0x08, 0x04, 0x7E, 0x00,
|
||||
0x7E, 0x04, 0x08, 0x10, 0x7E, 0x00,
|
||||
0x3C, 0x42, 0x42, 0x42, 0x3C, 0x00,
|
||||
0x7E, 0x12, 0x12, 0x12, 0x0C, 0x00,
|
||||
0x3C, 0x42, 0x52, 0x22, 0x5C, 0x00,
|
||||
0x7C, 0x12, 0x12, 0x32, 0x5E, 0x00,
|
||||
0x4C, 0x4A, 0x4A, 0x4A, 0x32, 0x00,
|
||||
0x02, 0x02, 0x7E, 0x02, 0x02, 0x00,
|
||||
0x3E, 0x40, 0x40, 0x40, 0x3E, 0x00,
|
||||
0x1E, 0x20, 0x40, 0x20, 0x1E, 0x00,
|
||||
0x3E, 0x40, 0x38, 0x40, 0x3E, 0x00,
|
||||
0x62, 0x14, 0x08, 0x14, 0x62, 0x00,
|
||||
0x06, 0x08, 0x70, 0x08, 0x06, 0x00,
|
||||
0x62, 0x52, 0x4A, 0x46, 0x42, 0x00,
|
||||
0x00, 0x7E, 0x42, 0x42, 0x00, 0x00,
|
||||
0x02, 0x04, 0x08, 0x10, 0x20, 0x00,
|
||||
0x00, 0x00, 0x42, 0x42, 0x7E, 0x00,
|
||||
0x08, 0x04, 0x02, 0x04, 0x08, 0x00,
|
||||
0x40, 0x40, 0x40, 0x40, 0x40, 0x00,
|
||||
0x00, 0x00, 0x06, 0x0A, 0x00, 0x00,
|
||||
0x60, 0x54, 0x54, 0x54, 0x7C, 0x00,
|
||||
0x7E, 0x48, 0x48, 0x48, 0x30, 0x00,
|
||||
0x30, 0x48, 0x48, 0x48, 0x48, 0x00,
|
||||
0x30, 0x48, 0x48, 0x48, 0x7E, 0x00,
|
||||
0x38, 0x54, 0x54, 0x54, 0x58, 0x00,
|
||||
0x00, 0x08, 0x7C, 0x0A, 0x00, 0x00,
|
||||
0x98, 0xA4, 0xA4, 0xA4, 0x78, 0x00,
|
||||
0x7E, 0x08, 0x08, 0x08, 0x70, 0x00,
|
||||
0x00, 0x00, 0x7A, 0x00, 0x00, 0x00,
|
||||
0x20, 0x40, 0x40, 0x3A, 0x00, 0x00,
|
||||
0x7E, 0x10, 0x28, 0x44, 0x00, 0x00,
|
||||
0x00, 0x00, 0x7E, 0x40, 0x00, 0x00,
|
||||
0x7C, 0x04, 0x78, 0x04, 0x78, 0x00,
|
||||
0x7C, 0x04, 0x04, 0x04, 0x78, 0x00,
|
||||
0x38, 0x44, 0x44, 0x44, 0x38, 0x00,
|
||||
0xFC, 0x24, 0x24, 0x24, 0x18, 0x00,
|
||||
0x18, 0x24, 0x24, 0x24, 0xFC, 0x00,
|
||||
0x7C, 0x08, 0x04, 0x04, 0x08, 0x00,
|
||||
0x48, 0x54, 0x54, 0x54, 0x24, 0x00,
|
||||
0x00, 0x04, 0x7E, 0x44, 0x00, 0x00,
|
||||
0x3C, 0x40, 0x40, 0x40, 0x7C, 0x00,
|
||||
0x1C, 0x20, 0x40, 0x20, 0x1C, 0x00,
|
||||
0x3C, 0x40, 0x30, 0x40, 0x3C, 0x00,
|
||||
0x44, 0x28, 0x10, 0x28, 0x44, 0x00,
|
||||
0x5C, 0xA0, 0xA0, 0xA0, 0x7C, 0x00,
|
||||
0x44, 0x64, 0x54, 0x4C, 0x44, 0x00,
|
||||
0xFE, 0xC1, 0xC1, 0xC9, 0xC5, 0xDD,
|
||||
0xC5, 0xC9, 0xC1, 0xC1, 0xFE, 0x00,
|
||||
0xFC, 0xFE, 0xFE, 0xEE, 0xF6, 0xC6,
|
||||
0xF6, 0xEE, 0xFE, 0xFE, 0xFC, 0x00,
|
||||
0x3C, 0x26, 0x23, 0x26, 0x3C, 0x00,
|
||||
0x7E, 0xFF, 0x81, 0xBF, 0xBF, 0xBF,
|
||||
0xBF, 0xF9, 0xF7, 0x8F, 0xF7, 0xF9,
|
||||
0xFF, 0x83, 0xED, 0xED, 0xCD, 0xA3,
|
||||
0xFF, 0x7E, 0x00, 0x00, 0x00, 0x00,
|
||||
0x7E, 0xFF, 0x81, 0xB5, 0xB5, 0xB5,
|
||||
0xB5, 0xFF, 0x81, 0xFB, 0xF7, 0xEF,
|
||||
0x81, 0xFF, 0xC3, 0xBD, 0xBD, 0xBD,
|
||||
0xBD, 0xFF, 0x7E, 0x00, 0x00, 0x00,
|
||||
0xFE, 0x01, 0xF1, 0xF1, 0x09, 0x05,
|
||||
0xFD, 0x91, 0x61, 0x91, 0x01, 0xFE,
|
||||
0xFE, 0x01, 0xFD, 0xF9, 0xF1, 0x61,
|
||||
0x01, 0xFD, 0x01, 0xFD, 0x01, 0xFE,
|
||||
0xFE, 0x01, 0x61, 0xF1, 0xF9, 0xFD,
|
||||
0x61, 0xF1, 0xF9, 0xFD, 0x01, 0xFE,
|
||||
0xFE, 0x01, 0xFD, 0xF9, 0xF1, 0x61,
|
||||
0xFD, 0xF9, 0xF1, 0x61, 0x01, 0xFE,
|
||||
0xFE, 0x01, 0x01, 0xFD, 0x01, 0x61,
|
||||
0xF1, 0xF9, 0xFD, 0x01, 0x01, 0xFE,
|
||||
0xFE, 0x01, 0x01, 0xFD, 0xF9, 0xF1,
|
||||
0x61, 0x01, 0xFD, 0x01, 0x01, 0xFE,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0xF0, 0x08, 0x04, 0xC4, 0x24, 0x24,
|
||||
0x24, 0xC4, 0x04, 0x08, 0xF0, 0x00,
|
||||
0xF0, 0xF8, 0xFC, 0x3C, 0xDC, 0xDC,
|
||||
0xDC, 0x3C, 0xFC, 0xF8, 0xF0, 0x00,
|
||||
0xFE, 0xC1, 0xC1, 0xC9, 0xC5, 0xDD,
|
||||
0xC5, 0xC9, 0xC1, 0xC1, 0xFE, 0x00,
|
||||
0xFC, 0xFE, 0xFE, 0xEE, 0xF6, 0xC6,
|
||||
0xF6, 0xEE, 0xFE, 0xFE, 0xFC, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0xFE, 0x01, 0x01, 0xF9, 0xF9, 0xF9,
|
||||
0xF9, 0xF9, 0xF9, 0x01, 0x01, 0xFE,
|
||||
0xFE, 0x01, 0xE1, 0xE1, 0x11, 0x09,
|
||||
0xF9, 0x01, 0x09, 0xF1, 0x01, 0xFE,
|
||||
0xFE, 0x01, 0x01, 0x21, 0x31, 0xF9,
|
||||
0xF9, 0x31, 0x21, 0x01, 0x01, 0xFE,
|
||||
0xFE, 0x01, 0x01, 0x41, 0xC1, 0xF9,
|
||||
0xF9, 0xC1, 0x41, 0x01, 0x01, 0xFE,
|
||||
0x07, 0x08, 0x08, 0x08, 0x09, 0x0A,
|
||||
0x0B, 0x08, 0x08, 0x08, 0x08, 0x07,
|
||||
0x07, 0x08, 0x0B, 0x09, 0x08, 0x08,
|
||||
0x08, 0x0B, 0x08, 0x0B, 0x08, 0x07,
|
||||
0x07, 0x08, 0x08, 0x08, 0x09, 0x0B,
|
||||
0x08, 0x08, 0x09, 0x0B, 0x08, 0x07,
|
||||
0x07, 0x08, 0x0B, 0x09, 0x08, 0x08,
|
||||
0x0B, 0x09, 0x08, 0x08, 0x08, 0x07,
|
||||
0x07, 0x08, 0x08, 0x0B, 0x08, 0x08,
|
||||
0x08, 0x09, 0x0B, 0x08, 0x08, 0x07,
|
||||
0x07, 0x08, 0x08, 0x0B, 0x09, 0x08,
|
||||
0x08, 0x08, 0x0B, 0x08, 0x08, 0x07,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x07, 0x08, 0x10, 0x13, 0x11, 0x11,
|
||||
0x11, 0x13, 0x10, 0x08, 0x07, 0x00,
|
||||
0x07, 0x0F, 0x1F, 0x1C, 0x1E, 0x1E,
|
||||
0x1E, 0x1C, 0x1F, 0x0F, 0x07, 0x00,
|
||||
0xFE, 0x01, 0xF1, 0xF9, 0xFD, 0xFD,
|
||||
0x05, 0x05, 0x09, 0xF1, 0x01, 0xFE,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
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, 0x08, 0x08, 0x09, 0x09, 0x09,
|
||||
0x09, 0x09, 0x09, 0x08, 0x08, 0x07,
|
||||
0x07, 0x08, 0x08, 0x08, 0x09, 0x0A,
|
||||
0x0B, 0x08, 0x09, 0x08, 0x08, 0x07,
|
||||
0x07, 0x08, 0x08, 0x08, 0x08, 0x09,
|
||||
0x09, 0x08, 0x08, 0x08, 0x08, 0x07,
|
||||
0x07, 0x08, 0x08, 0x08, 0x08, 0x09,
|
||||
0x09, 0x08, 0x08, 0x08, 0x08, 0x07,
|
||||
0x00, 0x00, 0x00, 0x04, 0x06, 0x3F,
|
||||
0x3F, 0x06, 0x04, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x08, 0x18, 0x3F,
|
||||
0x3F, 0x18, 0x08, 0x00, 0x00, 0x00,
|
||||
0x1C, 0x1C, 0x22, 0x41, 0x7F, 0x00,
|
||||
0x10, 0x18, 0x1C, 0x18, 0x10, 0x00,
|
||||
0x1C, 0x1C, 0x22, 0x41, 0x7F, 0x00,
|
||||
0x04, 0x0C, 0x1C, 0x0C, 0x04, 0x00,
|
||||
0x1C, 0x3E, 0x3E, 0x22, 0x1C, 0x00,
|
||||
0x10, 0x18, 0x1C, 0x18, 0x10, 0x00,
|
||||
0x1C, 0x3E, 0x3E, 0x22, 0x1C, 0x00,
|
||||
0x04, 0x0C, 0x1C, 0x0C, 0x04, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
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, 0x08, 0x08, 0x09, 0x0B, 0x0B,
|
||||
0x0A, 0x0A, 0x09, 0x08, 0x08, 0x07,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
};
|
233
keyboards/sendyyeah/pix/keymaps/default/keymap.c
Normal file
233
keyboards/sendyyeah/pix/keymaps/default/keymap.c
Normal file
|
@ -0,0 +1,233 @@
|
|||
/* Copyright 2020 sendyyeah
|
||||
*
|
||||
* 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
|
||||
|
||||
#define LAYERNUM 2
|
||||
|
||||
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
||||
[0] = LAYOUT(KC_MUTE, KC_MPLY, KC_MPRV, KC_MNXT, TO(1)),
|
||||
[1] = LAYOUT(KC_TRNS, KC_MSTP, KC_MRWD, KC_MFFD, TO(0))
|
||||
};
|
||||
|
||||
int get_icon_start_position(int key_position) {
|
||||
if (key_position == 1) {
|
||||
return 0;
|
||||
} else {
|
||||
return (key_position - 1) * 3;
|
||||
}
|
||||
}
|
||||
|
||||
void encoder_update_user(uint8_t index, bool clockwise) {
|
||||
static const char PROGMEM UP_ICON[] = {0x1E,0};
|
||||
static const char PROGMEM DOWN_ICON[] = {0x1F,0};
|
||||
if (index == 0) {
|
||||
if (layer_state_is(0)) {
|
||||
if (clockwise) {
|
||||
tap_code(KC_VOLU);
|
||||
oled_set_cursor(get_icon_start_position(7), 3);
|
||||
oled_write_P(PSTR(" "), false);
|
||||
oled_set_cursor(get_icon_start_position(7), 2);
|
||||
oled_write_P(UP_ICON, false);
|
||||
} else {
|
||||
tap_code(KC_VOLD);
|
||||
|
||||
oled_set_cursor(get_icon_start_position(7), 2);
|
||||
oled_write_P(PSTR(" "), false);
|
||||
oled_set_cursor(get_icon_start_position(7), 3);
|
||||
oled_write_P(DOWN_ICON, false);
|
||||
}
|
||||
} else {
|
||||
if (clockwise) {
|
||||
tap_code(KC_BRIU);
|
||||
oled_set_cursor(get_icon_start_position(7), 3);
|
||||
oled_write_P(PSTR(" "), false);
|
||||
oled_set_cursor(get_icon_start_position(7), 2);
|
||||
oled_write_P(UP_ICON, false);
|
||||
} else {
|
||||
tap_code(KC_BRID);
|
||||
oled_set_cursor(get_icon_start_position(7), 2);
|
||||
oled_write_P(PSTR(" "), false);
|
||||
oled_set_cursor(get_icon_start_position(7), 3);
|
||||
oled_write_P(DOWN_ICON, false);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
#ifdef OLED_DRIVER_ENABLE
|
||||
|
||||
oled_rotation_t oled_init_user(oled_rotation_t rotation) {
|
||||
return OLED_ROTATION_180;
|
||||
}
|
||||
|
||||
void draw_mute_icon(int key_position, int row) {
|
||||
static const char PROGMEM ICON_MUTE_0[] = {0x88, 0x89, 0};
|
||||
static const char PROGMEM ICON_MUTE_1[] = {0xA8, 0xA9, 0};
|
||||
oled_set_cursor(get_icon_start_position(key_position), row);
|
||||
oled_write_P(ICON_MUTE_0, false);
|
||||
oled_set_cursor(get_icon_start_position(key_position), row + 1);
|
||||
oled_write_P(ICON_MUTE_1, false);
|
||||
}
|
||||
|
||||
void draw_play_icon(int key_position, int row) {
|
||||
static const char PROGMEM ICON_PLAY_0[] = {0x8A, 0x8B, 0};
|
||||
static const char PROGMEM ICON_PLAY_1[] = {0xAA, 0xAB, 0};
|
||||
oled_set_cursor(get_icon_start_position(key_position), row);
|
||||
oled_write_P(ICON_PLAY_0, false);
|
||||
oled_set_cursor(get_icon_start_position(key_position), row + 1);
|
||||
oled_write_P(ICON_PLAY_1, false);
|
||||
}
|
||||
|
||||
void draw_rewind_icon(int key_position, int row) {
|
||||
static const char PROGMEM ICON_REWIND_0[] = {0x8C, 0x8D, 0};
|
||||
static const char PROGMEM ICON_REWIND_1[] = {0xAC, 0xAD, 0};
|
||||
oled_set_cursor(get_icon_start_position(key_position), row);
|
||||
oled_write_P(ICON_REWIND_0, false);
|
||||
oled_set_cursor(get_icon_start_position(key_position), row + 1);
|
||||
oled_write_P(ICON_REWIND_1, false);
|
||||
}
|
||||
|
||||
void draw_fast_forward_icon(int key_position, int row) {
|
||||
static const char PROGMEM ICON_FAST_FORWARD_0[] = {0x8E, 0x8F, 0};
|
||||
static const char PROGMEM ICON_FAST_FORWARD_1[] = {0xAE, 0xAF, 0};
|
||||
oled_set_cursor(get_icon_start_position(key_position), row);
|
||||
oled_write_P(ICON_FAST_FORWARD_0, false);
|
||||
oled_set_cursor(get_icon_start_position(key_position), row + 1);
|
||||
oled_write_P(ICON_FAST_FORWARD_1, false);
|
||||
}
|
||||
|
||||
void draw_prev_icon(int key_position, int row) {
|
||||
static const char PROGMEM ICON_PREV_0[] = {0x90, 0x91, 0};
|
||||
static const char PROGMEM ICON_PREV_1[] = {0xB0, 0xB1, 0};
|
||||
oled_set_cursor(get_icon_start_position(key_position), row);
|
||||
oled_write_P(ICON_PREV_0, false);
|
||||
oled_set_cursor(get_icon_start_position(key_position), row + 1);
|
||||
oled_write_P(ICON_PREV_1, false);
|
||||
}
|
||||
|
||||
void draw_next_icon(int key_position, int row) {
|
||||
static const char PROGMEM ICON_NEXT_0[] = {0x92, 0x93, 0};
|
||||
static const char PROGMEM ICON_NEXT_1[] = {0xB2, 0xB3, 0};
|
||||
oled_set_cursor(get_icon_start_position(key_position), row);
|
||||
oled_write_P(ICON_NEXT_0, false);
|
||||
oled_set_cursor(get_icon_start_position(key_position), row + 1);
|
||||
oled_write_P(ICON_NEXT_1, false);
|
||||
}
|
||||
|
||||
void draw_stop_icon(int key_position, int row) {
|
||||
static const char PROGMEM ICON_STOP_0[] = {0xA0, 0xA1, 0};
|
||||
static const char PROGMEM ICON_STOP_1[] = {0xC0, 0xC1, 0};
|
||||
oled_set_cursor(get_icon_start_position(key_position), row);
|
||||
oled_write_P(ICON_STOP_0, false);
|
||||
oled_set_cursor(get_icon_start_position(key_position), row + 1);
|
||||
oled_write_P(ICON_STOP_1, false);
|
||||
}
|
||||
|
||||
void draw_sound_icon(int key_position, int row) {
|
||||
static const char PROGMEM ICON_SOUND_0[] = {0xA2, 0xA3, 0};
|
||||
static const char PROGMEM ICON_SOUND_1[] = {0xC2, 0xC3, 0};
|
||||
oled_set_cursor(get_icon_start_position(key_position), row);
|
||||
oled_write_P(ICON_SOUND_0, false);
|
||||
oled_set_cursor(get_icon_start_position(key_position), row + 1);
|
||||
oled_write_P(ICON_SOUND_1, false);
|
||||
}
|
||||
|
||||
void draw_raise_icon(int key_position, int row) {
|
||||
static const char PROGMEM ICON_RAISE_0[] = {0xA4, 0xA5, 0};
|
||||
static const char PROGMEM ICON_RAISE_1[] = {0xC4, 0xC5, 0};
|
||||
oled_set_cursor(get_icon_start_position(key_position), row);
|
||||
oled_write_P(ICON_RAISE_0, false);
|
||||
oled_set_cursor(get_icon_start_position(key_position), row + 1);
|
||||
oled_write_P(ICON_RAISE_1, false);
|
||||
}
|
||||
|
||||
void draw_lower_icon(int key_position, int row) {
|
||||
static const char PROGMEM ICON_LOWER_0[] = {0xA6, 0xA7, 0};
|
||||
static const char PROGMEM ICON_LOWER_1[] = {0xC6, 0xC7, 0};
|
||||
oled_set_cursor(get_icon_start_position(key_position), row);
|
||||
oled_write_P(ICON_LOWER_0, false);
|
||||
oled_set_cursor(get_icon_start_position(key_position), row + 1);
|
||||
oled_write_P(ICON_LOWER_1, false);
|
||||
}
|
||||
|
||||
void draw_brightness_icon(int key_position, int row) {
|
||||
static const char PROGMEM ICON_BRIGHTNESS_0[] = {0xB9, 0xBA, 0};
|
||||
static const char PROGMEM ICON_BRIGHTNESS_1[] = {0xD9, 0xDA, 0};
|
||||
oled_set_cursor(get_icon_start_position(key_position), row);
|
||||
oled_write_P(ICON_BRIGHTNESS_0, false);
|
||||
oled_set_cursor(get_icon_start_position(key_position), row + 1);
|
||||
oled_write_P(ICON_BRIGHTNESS_1, false);
|
||||
}
|
||||
|
||||
void oled_task_user(void) {
|
||||
// Host Keyboard Layer Status
|
||||
static const char PROGMEM ICON_LAYER[] = {0x80, 0x81, 0x82, 0x83, 0};
|
||||
static const char PROGMEM ICON_ENCODER[] = {0x84, 0x85, 0x86, 0x87, 0};
|
||||
// static const char PROGMEM ICON_MUTE[] = {0x88, 0x89,0xA9, 0xAA};
|
||||
|
||||
oled_write_P(ICON_LAYER, false);
|
||||
|
||||
switch (get_highest_layer(layer_state)) {
|
||||
case 0:
|
||||
oled_write_P(PSTR("1ST "), false);
|
||||
break;
|
||||
case 1:
|
||||
oled_write_P(PSTR("2ND "), false);
|
||||
break;
|
||||
default:
|
||||
// Or use the write_ln shortcut over adding '\n' to the end of your string
|
||||
oled_write_P(PSTR("UNDF"), false);
|
||||
}
|
||||
|
||||
oled_write_P(PSTR(" "), false);
|
||||
|
||||
oled_write_P(ICON_ENCODER, false);
|
||||
switch(get_highest_layer(layer_state)) {
|
||||
case 0:
|
||||
oled_write_P(PSTR("VOL "), false);
|
||||
break;
|
||||
case 1:
|
||||
oled_write_P(PSTR("BRGT"), false);
|
||||
break;
|
||||
default:
|
||||
// Or use the write_ln shortcut over adding '\n' to the end of your string
|
||||
oled_write_P(PSTR("UNDF"), false);
|
||||
}
|
||||
|
||||
switch(get_highest_layer(layer_state)) {
|
||||
default:
|
||||
case 0:
|
||||
draw_mute_icon(1, 2);
|
||||
draw_play_icon(2, 2);
|
||||
draw_prev_icon(3, 2);
|
||||
draw_next_icon(4, 2);
|
||||
draw_raise_icon(5, 2);
|
||||
draw_sound_icon(6, 2);
|
||||
break;
|
||||
case 1:
|
||||
draw_mute_icon(1, 2);
|
||||
draw_stop_icon(2, 2);
|
||||
draw_rewind_icon(3, 2);
|
||||
draw_fast_forward_icon(4, 2);
|
||||
draw_lower_icon(5, 2);
|
||||
draw_brightness_icon(6, 2);
|
||||
break;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
#endif
|
7
keyboards/sendyyeah/pix/keymaps/default/readme.md
Normal file
7
keyboards/sendyyeah/pix/keymaps/default/readme.md
Normal file
|
@ -0,0 +1,7 @@
|
|||
# Default Pix Layout
|
||||
|
||||
The default layer of Pix
|
||||
```
|
||||
Layer 0: Mute, Play / Pause, Previous, Next, To Next Layer
|
||||
Layer 1: ____, Print Screen, ________, ____, To Previous Layer
|
||||
```
|
233
keyboards/sendyyeah/pix/keymaps/via/keymap.c
Normal file
233
keyboards/sendyyeah/pix/keymaps/via/keymap.c
Normal file
|
@ -0,0 +1,233 @@
|
|||
/* Copyright 2020 sendyyeah
|
||||
*
|
||||
* 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
|
||||
|
||||
#define LAYERNUM 2
|
||||
|
||||
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
||||
[0] = LAYOUT(KC_MUTE, KC_MPLY, KC_MPRV, KC_MNXT, TO(1)),
|
||||
[1] = LAYOUT(KC_TRNS, KC_MSTP, KC_MRWD, KC_MFFD, TO(0))
|
||||
};
|
||||
|
||||
int get_icon_start_position(int key_position) {
|
||||
if (key_position == 1) {
|
||||
return 0;
|
||||
} else {
|
||||
return (key_position - 1) * 3;
|
||||
}
|
||||
}
|
||||
|
||||
void encoder_update_user(uint8_t index, bool clockwise) {
|
||||
static const char PROGMEM UP_ICON[] = {0x1E,0};
|
||||
static const char PROGMEM DOWN_ICON[] = {0x1F,0};
|
||||
if (index == 0) {
|
||||
if (layer_state_is(0)) {
|
||||
if (clockwise) {
|
||||
tap_code(KC_VOLU);
|
||||
oled_set_cursor(get_icon_start_position(7), 3);
|
||||
oled_write_P(PSTR(" "), false);
|
||||
oled_set_cursor(get_icon_start_position(7), 2);
|
||||
oled_write_P(UP_ICON, false);
|
||||
} else {
|
||||
tap_code(KC_VOLD);
|
||||
|
||||
oled_set_cursor(get_icon_start_position(7), 2);
|
||||
oled_write_P(PSTR(" "), false);
|
||||
oled_set_cursor(get_icon_start_position(7), 3);
|
||||
oled_write_P(DOWN_ICON, false);
|
||||
}
|
||||
} else {
|
||||
if (clockwise) {
|
||||
tap_code(KC_BRIU);
|
||||
oled_set_cursor(get_icon_start_position(7), 3);
|
||||
oled_write_P(PSTR(" "), false);
|
||||
oled_set_cursor(get_icon_start_position(7), 2);
|
||||
oled_write_P(UP_ICON, false);
|
||||
} else {
|
||||
tap_code(KC_BRID);
|
||||
oled_set_cursor(get_icon_start_position(7), 2);
|
||||
oled_write_P(PSTR(" "), false);
|
||||
oled_set_cursor(get_icon_start_position(7), 3);
|
||||
oled_write_P(DOWN_ICON, false);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
#ifdef OLED_DRIVER_ENABLE
|
||||
|
||||
oled_rotation_t oled_init_user(oled_rotation_t rotation) {
|
||||
return OLED_ROTATION_180;
|
||||
}
|
||||
|
||||
void draw_mute_icon(int key_position, int row) {
|
||||
static const char PROGMEM ICON_MUTE_0[] = {0x88, 0x89, 0};
|
||||
static const char PROGMEM ICON_MUTE_1[] = {0xA8, 0xA9, 0};
|
||||
oled_set_cursor(get_icon_start_position(key_position), row);
|
||||
oled_write_P(ICON_MUTE_0, false);
|
||||
oled_set_cursor(get_icon_start_position(key_position), row + 1);
|
||||
oled_write_P(ICON_MUTE_1, false);
|
||||
}
|
||||
|
||||
void draw_play_icon(int key_position, int row) {
|
||||
static const char PROGMEM ICON_PLAY_0[] = {0x8A, 0x8B, 0};
|
||||
static const char PROGMEM ICON_PLAY_1[] = {0xAA, 0xAB, 0};
|
||||
oled_set_cursor(get_icon_start_position(key_position), row);
|
||||
oled_write_P(ICON_PLAY_0, false);
|
||||
oled_set_cursor(get_icon_start_position(key_position), row + 1);
|
||||
oled_write_P(ICON_PLAY_1, false);
|
||||
}
|
||||
|
||||
void draw_rewind_icon(int key_position, int row) {
|
||||
static const char PROGMEM ICON_REWIND_0[] = {0x8C, 0x8D, 0};
|
||||
static const char PROGMEM ICON_REWIND_1[] = {0xAC, 0xAD, 0};
|
||||
oled_set_cursor(get_icon_start_position(key_position), row);
|
||||
oled_write_P(ICON_REWIND_0, false);
|
||||
oled_set_cursor(get_icon_start_position(key_position), row + 1);
|
||||
oled_write_P(ICON_REWIND_1, false);
|
||||
}
|
||||
|
||||
void draw_fast_forward_icon(int key_position, int row) {
|
||||
static const char PROGMEM ICON_FAST_FORWARD_0[] = {0x8E, 0x8F, 0};
|
||||
static const char PROGMEM ICON_FAST_FORWARD_1[] = {0xAE, 0xAF, 0};
|
||||
oled_set_cursor(get_icon_start_position(key_position), row);
|
||||
oled_write_P(ICON_FAST_FORWARD_0, false);
|
||||
oled_set_cursor(get_icon_start_position(key_position), row + 1);
|
||||
oled_write_P(ICON_FAST_FORWARD_1, false);
|
||||
}
|
||||
|
||||
void draw_prev_icon(int key_position, int row) {
|
||||
static const char PROGMEM ICON_PREV_0[] = {0x90, 0x91, 0};
|
||||
static const char PROGMEM ICON_PREV_1[] = {0xB0, 0xB1, 0};
|
||||
oled_set_cursor(get_icon_start_position(key_position), row);
|
||||
oled_write_P(ICON_PREV_0, false);
|
||||
oled_set_cursor(get_icon_start_position(key_position), row + 1);
|
||||
oled_write_P(ICON_PREV_1, false);
|
||||
}
|
||||
|
||||
void draw_next_icon(int key_position, int row) {
|
||||
static const char PROGMEM ICON_NEXT_0[] = {0x92, 0x93, 0};
|
||||
static const char PROGMEM ICON_NEXT_1[] = {0xB2, 0xB3, 0};
|
||||
oled_set_cursor(get_icon_start_position(key_position), row);
|
||||
oled_write_P(ICON_NEXT_0, false);
|
||||
oled_set_cursor(get_icon_start_position(key_position), row + 1);
|
||||
oled_write_P(ICON_NEXT_1, false);
|
||||
}
|
||||
|
||||
void draw_stop_icon(int key_position, int row) {
|
||||
static const char PROGMEM ICON_STOP_0[] = {0xA0, 0xA1, 0};
|
||||
static const char PROGMEM ICON_STOP_1[] = {0xC0, 0xC1, 0};
|
||||
oled_set_cursor(get_icon_start_position(key_position), row);
|
||||
oled_write_P(ICON_STOP_0, false);
|
||||
oled_set_cursor(get_icon_start_position(key_position), row + 1);
|
||||
oled_write_P(ICON_STOP_1, false);
|
||||
}
|
||||
|
||||
void draw_sound_icon(int key_position, int row) {
|
||||
static const char PROGMEM ICON_SOUND_0[] = {0xA2, 0xA3, 0};
|
||||
static const char PROGMEM ICON_SOUND_1[] = {0xC2, 0xC3, 0};
|
||||
oled_set_cursor(get_icon_start_position(key_position), row);
|
||||
oled_write_P(ICON_SOUND_0, false);
|
||||
oled_set_cursor(get_icon_start_position(key_position), row + 1);
|
||||
oled_write_P(ICON_SOUND_1, false);
|
||||
}
|
||||
|
||||
void draw_raise_icon(int key_position, int row) {
|
||||
static const char PROGMEM ICON_RAISE_0[] = {0xA4, 0xA5, 0};
|
||||
static const char PROGMEM ICON_RAISE_1[] = {0xC4, 0xC5, 0};
|
||||
oled_set_cursor(get_icon_start_position(key_position), row);
|
||||
oled_write_P(ICON_RAISE_0, false);
|
||||
oled_set_cursor(get_icon_start_position(key_position), row + 1);
|
||||
oled_write_P(ICON_RAISE_1, false);
|
||||
}
|
||||
|
||||
void draw_lower_icon(int key_position, int row) {
|
||||
static const char PROGMEM ICON_LOWER_0[] = {0xA6, 0xA7, 0};
|
||||
static const char PROGMEM ICON_LOWER_1[] = {0xC6, 0xC7, 0};
|
||||
oled_set_cursor(get_icon_start_position(key_position), row);
|
||||
oled_write_P(ICON_LOWER_0, false);
|
||||
oled_set_cursor(get_icon_start_position(key_position), row + 1);
|
||||
oled_write_P(ICON_LOWER_1, false);
|
||||
}
|
||||
|
||||
void draw_brightness_icon(int key_position, int row) {
|
||||
static const char PROGMEM ICON_BRIGHTNESS_0[] = {0xB9, 0xBA, 0};
|
||||
static const char PROGMEM ICON_BRIGHTNESS_1[] = {0xD9, 0xDA, 0};
|
||||
oled_set_cursor(get_icon_start_position(key_position), row);
|
||||
oled_write_P(ICON_BRIGHTNESS_0, false);
|
||||
oled_set_cursor(get_icon_start_position(key_position), row + 1);
|
||||
oled_write_P(ICON_BRIGHTNESS_1, false);
|
||||
}
|
||||
|
||||
void oled_task_user(void) {
|
||||
// Host Keyboard Layer Status
|
||||
static const char PROGMEM ICON_LAYER[] = {0x80, 0x81, 0x82, 0x83, 0};
|
||||
static const char PROGMEM ICON_ENCODER[] = {0x84, 0x85, 0x86, 0x87, 0};
|
||||
// static const char PROGMEM ICON_MUTE[] = {0x88, 0x89,0xA9, 0xAA};
|
||||
|
||||
oled_write_P(ICON_LAYER, false);
|
||||
|
||||
switch (get_highest_layer(layer_state)) {
|
||||
case 0:
|
||||
oled_write_P(PSTR("1ST "), false);
|
||||
break;
|
||||
case 1:
|
||||
oled_write_P(PSTR("2ND "), false);
|
||||
break;
|
||||
default:
|
||||
// Or use the write_ln shortcut over adding '\n' to the end of your string
|
||||
oled_write_P(PSTR("UNDF"), false);
|
||||
}
|
||||
|
||||
oled_write_P(PSTR(" "), false);
|
||||
|
||||
oled_write_P(ICON_ENCODER, false);
|
||||
switch(get_highest_layer(layer_state)) {
|
||||
case 0:
|
||||
oled_write_P(PSTR("VOL "), false);
|
||||
break;
|
||||
case 1:
|
||||
oled_write_P(PSTR("BRGT"), false);
|
||||
break;
|
||||
default:
|
||||
// Or use the write_ln shortcut over adding '\n' to the end of your string
|
||||
oled_write_P(PSTR("UNDF"), false);
|
||||
}
|
||||
|
||||
switch(get_highest_layer(layer_state)) {
|
||||
default:
|
||||
case 0:
|
||||
draw_mute_icon(1, 2);
|
||||
draw_play_icon(2, 2);
|
||||
draw_prev_icon(3, 2);
|
||||
draw_next_icon(4, 2);
|
||||
draw_raise_icon(5, 2);
|
||||
draw_sound_icon(6, 2);
|
||||
break;
|
||||
case 1:
|
||||
draw_mute_icon(1, 2);
|
||||
draw_stop_icon(2, 2);
|
||||
draw_rewind_icon(3, 2);
|
||||
draw_fast_forward_icon(4, 2);
|
||||
draw_lower_icon(5, 2);
|
||||
draw_brightness_icon(6, 2);
|
||||
break;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
#endif
|
7
keyboards/sendyyeah/pix/keymaps/via/readme.md
Normal file
7
keyboards/sendyyeah/pix/keymaps/via/readme.md
Normal file
|
@ -0,0 +1,7 @@
|
|||
# Default Pix Layout with VIA Support
|
||||
|
||||
The default layer of Pix
|
||||
```
|
||||
Layer 0: Mute, Play / Pause, Previous, Next, To Next Layer
|
||||
Layer 1: ____, Print Screen, ________, ____, To Previous Layer
|
||||
```
|
2
keyboards/sendyyeah/pix/keymaps/via/rules.mk
Normal file
2
keyboards/sendyyeah/pix/keymaps/via/rules.mk
Normal file
|
@ -0,0 +1,2 @@
|
|||
VIA_ENABLE = yes
|
||||
LTO_ENABLE = yes
|
30
keyboards/sendyyeah/pix/pix.c
Normal file
30
keyboards/sendyyeah/pix/pix.c
Normal file
|
@ -0,0 +1,30 @@
|
|||
/* Copyright 2020 sendyyeah
|
||||
*
|
||||
* 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 "pix.h"
|
||||
|
||||
void eeconfig_init_kb(void) {
|
||||
#ifdef RGBLIGHT_ENABLE
|
||||
rgblight_enable(); // Enable RGB underglow by default
|
||||
rgblight_sethsv(0, 255, 255);
|
||||
#ifdef RGBLIGHT_ANIMATIONS
|
||||
rgblight_mode(RGBLIGHT_MODE_RAINBOW_SWIRL + 5); // Set to RGB_RAINBOW_SWIRL animation by default
|
||||
#endif
|
||||
#endif
|
||||
|
||||
eeconfig_update_kb(0);
|
||||
eeconfig_init_user();
|
||||
}
|
23
keyboards/sendyyeah/pix/pix.h
Normal file
23
keyboards/sendyyeah/pix/pix.h
Normal file
|
@ -0,0 +1,23 @@
|
|||
/* Copyright 2020 sendyyeah
|
||||
*
|
||||
* 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"
|
||||
|
||||
#define LAYOUT(K00, K01, K02, K03, K04) { \
|
||||
{ K00, K01, K02, K03, K04 }, \
|
||||
}
|
19
keyboards/sendyyeah/pix/readme.md
Normal file
19
keyboards/sendyyeah/pix/readme.md
Normal file
|
@ -0,0 +1,19 @@
|
|||
# Pix
|
||||
|
||||
![Pix](https://i.imgur.com/ZcuDN6zl.jpg)
|
||||
|
||||
A mini 1x4 macropad with rotary encoders and OLED screen. Currently the PCB and kits can only be purchased in Indonesia. The PCB source will be available soon on github.
|
||||
|
||||
* Keyboard Maintainer: [sendz](https://github.com/sendz)
|
||||
* Hardware Supported: Pix PCB, Arduino Pro Micro, EC11 Rotary Encoder, OLED Screen, Acrylic Case, Encoder Knob
|
||||
* Hardware Availability: [Tokopedia/Sell Stuffs](https://tokopedia.com/sell-stuffs) (Indonesia only) or any electronic part store.
|
||||
|
||||
Make example for this keyboard (after setting up your build environment):
|
||||
|
||||
make sendyyeah/pix:default
|
||||
|
||||
How to reset and enter bootloader:
|
||||
- Press reset button on the right side of the PCB (twice if the ProMicro is fresh)
|
||||
- Flash with QMK Toolbox or any command line you like
|
||||
|
||||
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).
|
24
keyboards/sendyyeah/pix/rules.mk
Normal file
24
keyboards/sendyyeah/pix/rules.mk
Normal file
|
@ -0,0 +1,24 @@
|
|||
# MCU name
|
||||
MCU = atmega32u4
|
||||
|
||||
# Bootloader selection
|
||||
BOOTLOADER = caterina
|
||||
|
||||
# Build Options
|
||||
# change yes to no to disable
|
||||
#
|
||||
BOOTMAGIC_ENABLE = no # Virtual DIP switch configuration
|
||||
MOUSEKEY_ENABLE = yes # Mouse keys
|
||||
EXTRAKEY_ENABLE = yes # Audio control and System control
|
||||
CONSOLE_ENABLE = no # Console for debug
|
||||
COMMAND_ENABLE = no # Commands for debug and configuration
|
||||
# Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE
|
||||
SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend
|
||||
# if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work
|
||||
NKRO_ENABLE = no # USB Nkey Rollover
|
||||
BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality
|
||||
RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow
|
||||
BLUETOOTH_ENABLE = no # Enable Bluetooth
|
||||
AUDIO_ENABLE = no # Audio output
|
||||
ENCODER_ENABLE = yes
|
||||
OLED_DRIVER_ENABLE = yes
|
Loading…
Reference in a new issue