Compare commits
2 commits
607391b256
...
68fc73d377
Author | SHA1 | Date | |
---|---|---|---|
kemonine | 68fc73d377 | ||
kemonine | a32c8cb6a4 |
|
@ -1,5 +0,0 @@
|
|||
# nullbits tidbit
|
||||
|
||||
The information, keymaps, firmware and keyboard layout for KemoNine's setup on the [nullbits tidbit](https://nullbits.co/tidbit/) number pad (macro board).
|
||||
|
||||
Layout files were generated by [www.keyboard-layout-editor.com](http://www.keyboard-layout-editor.com/)
|
|
@ -1,36 +0,0 @@
|
|||
/* Copyright 2020 KemoNine
|
||||
*
|
||||
* 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
|
||||
|
||||
// place overrides here
|
||||
#undef RGBLIGHT_ANIMATIONS
|
||||
#define RGBLIGHT_LAYERS
|
||||
|
||||
// Mouse settings
|
||||
#define MOUSEKEY_DELAY 175
|
||||
#define MOUSEKEY_WHEEL_DELAY 175
|
||||
#define MOUSEKEY_INTERVAL 20
|
||||
#define MOUSEKEY_TIME_TO_MAX 15
|
||||
#define MOUSEKEY_MAX_SPEED 5
|
||||
#define MOUSEKEY_WHEEL_INTERVAL 50
|
||||
#define MOUSEKEY_WHEEL_TIME_TO_MAX 20
|
||||
#define MOUSEKEY_WHEEL_MAX_SPEED 10
|
||||
#define MK_COMBINED
|
||||
|
||||
// Encoder
|
||||
#define ENCODERS_PAD_A { D3 }
|
||||
#define ENCODERS_PAD_B { D2 }
|
|
@ -1,168 +0,0 @@
|
|||
/* Copyright 2020 Jay Greco
|
||||
*
|
||||
* 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
|
||||
#include "remote_kb.h"
|
||||
#include "bitc_led.h"
|
||||
|
||||
enum custom_keycodes {
|
||||
PROG = SAFE_RANGE,
|
||||
ACCEL,
|
||||
ACCEL_ADJ,
|
||||
};
|
||||
|
||||
enum {
|
||||
ACCEL_0 = 0,
|
||||
ACCEL_1 = 1,
|
||||
ACCEL_2 = 2,
|
||||
};
|
||||
static uint8_t acceleration_level = ACCEL_0;
|
||||
void change_accel(void) {
|
||||
acceleration_level++;
|
||||
if (acceleration_level > ACCEL_2) {
|
||||
acceleration_level = ACCEL_0;
|
||||
}
|
||||
}
|
||||
|
||||
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
||||
// Base layer (numpad)
|
||||
[0] = LAYOUT(
|
||||
TO(1), PROG, KC_NO, \
|
||||
KC_MS_BTN1, KC_MS_UP, KC_MS_BTN2, LCTL(LALT(KC_TAB)), \
|
||||
KC_MS_LEFT, KC_MS_DOWN, KC_MS_RIGHT, LGUI(KC_DOWN), \
|
||||
KC_ESC, KC_MS_WH_LEFT, KC_MS_WH_RIGHT, ACCEL, \
|
||||
KC_AUDIO_MUTE, KC_AUDIO_VOL_DOWN, KC_AUDIO_VOL_UP, ACCEL_ADJ \
|
||||
),
|
||||
|
||||
// Function layer (numpad)
|
||||
[1] = LAYOUT(
|
||||
TO(0), PROG, KC_KP_SLASH,
|
||||
KC_KP_7, KC_KP_8, KC_KP_9, KC_KP_ASTERISK,
|
||||
KC_KP_4, KC_KP_5, KC_KP_6, KC_KP_MINUS,
|
||||
KC_KP_1, KC_KP_2, KC_KP_3, KC_KP_PLUS,
|
||||
KC_AUDIO_MUTE, KC_KP_0, KC_KP_DOT, KC_KP_ENTER
|
||||
),
|
||||
};
|
||||
|
||||
bool process_record_user(uint16_t keycode, keyrecord_t *record) {
|
||||
process_record_remote_kb(keycode, record);
|
||||
|
||||
switch(keycode) {
|
||||
case PROG:
|
||||
if (record->event.pressed) {
|
||||
set_bitc_LED(LED_DIM);
|
||||
rgblight_disable_noeeprom();
|
||||
reset_keyboard();
|
||||
}
|
||||
break;
|
||||
case ACCEL:
|
||||
if (record->event.pressed) {
|
||||
switch(acceleration_level) {
|
||||
case ACCEL_0:
|
||||
register_code16(KC_ACL0);
|
||||
break;
|
||||
case ACCEL_1:
|
||||
register_code16(KC_ACL1);
|
||||
break;
|
||||
case ACCEL_2:
|
||||
register_code16(KC_ACL2);
|
||||
break;
|
||||
}
|
||||
} else {
|
||||
switch(acceleration_level) {
|
||||
case ACCEL_0:
|
||||
unregister_code16(KC_ACL0);
|
||||
break;
|
||||
case ACCEL_1:
|
||||
unregister_code16(KC_ACL1);
|
||||
break;
|
||||
case ACCEL_2:
|
||||
unregister_code16(KC_ACL2);
|
||||
break;
|
||||
}
|
||||
}
|
||||
return false; // Skip all further processing of this key
|
||||
case ACCEL_ADJ:
|
||||
if (record->event.pressed) {
|
||||
}
|
||||
else {
|
||||
change_accel();
|
||||
}
|
||||
return false; // Skip all further processing of this key
|
||||
default:
|
||||
break;
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
void encoder_update_user(uint8_t index, bool clockwise) {
|
||||
if (clockwise) {
|
||||
if (layer_state_is(0)) {
|
||||
tap_code(KC_MS_WH_UP);
|
||||
}
|
||||
else if (layer_state_is(1)) {
|
||||
tap_code(KC_AUDIO_VOL_UP);
|
||||
}
|
||||
} else {
|
||||
if (layer_state_is(0)) {
|
||||
tap_code(KC_MS_WH_DOWN);
|
||||
}
|
||||
else if (layer_state_is(1)) {
|
||||
tap_code(KC_AUDIO_VOL_DOWN);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Customized HSV values for layer highlights
|
||||
#define HSV_KMN_PURPLE 191, 255, 180
|
||||
#define HSV_KMN_ORANGE 10,255, 180
|
||||
|
||||
const rgblight_segment_t PROGMEM led_underglow_purple[] = RGBLIGHT_LAYER_SEGMENTS(
|
||||
{0, RGBLED_NUM, HSV_KMN_PURPLE}
|
||||
);
|
||||
|
||||
const rgblight_segment_t PROGMEM led_underglow_green[] = RGBLIGHT_LAYER_SEGMENTS(
|
||||
{0, RGBLED_NUM, HSV_KMN_ORANGE}
|
||||
);
|
||||
|
||||
// Array of layers for management
|
||||
const rgblight_segment_t* const PROGMEM my_rgb_layers[] = RGBLIGHT_LAYERS_LIST(
|
||||
led_underglow_purple,
|
||||
led_underglow_green
|
||||
);
|
||||
|
||||
// Layer color init
|
||||
void keyboard_post_init_user(void) {
|
||||
rgblight_layers = my_rgb_layers;
|
||||
set_bitc_LED(LED_OFF);
|
||||
layer_clear();
|
||||
layer_on(0);
|
||||
rgblight_sethsv_noeeprom(HSV_KMN_PURPLE);
|
||||
}
|
||||
|
||||
layer_state_t layer_state_set_user(layer_state_t state) {
|
||||
rgblight_set_layer_state(1, layer_state_cmp(state, 1));
|
||||
rgblight_set_layer_state(0, layer_state_cmp(state, 0));
|
||||
switch (get_highest_layer(state)) {
|
||||
case 1:
|
||||
tap_code(KC_NLCK);
|
||||
break;
|
||||
case 0:
|
||||
tap_code(KC_NLCK);
|
||||
break;
|
||||
}
|
||||
return state;
|
||||
}
|
|
@ -9,9 +9,9 @@
|
|||
"x": 1,
|
||||
"a": 7
|
||||
},
|
||||
"TG(1)",
|
||||
"Boot",
|
||||
""
|
||||
"TO(1)",
|
||||
"TO(2)",
|
||||
"TO(3)"
|
||||
],
|
||||
[
|
||||
"Left Click",
|
||||
|
@ -39,8 +39,8 @@
|
|||
{
|
||||
"a": 7
|
||||
},
|
||||
"Vol Down",
|
||||
"Vol Up",
|
||||
"Vol Down",
|
||||
"Accel Mode"
|
||||
]
|
||||
]
|
Before Width: | Height: | Size: 14 KiB After Width: | Height: | Size: 14 KiB |
46
nullbitsco/tidbit/layer-2---navigation.json
Normal file
|
@ -0,0 +1,46 @@
|
|||
[
|
||||
{
|
||||
"backcolor": "#00f3ff",
|
||||
"name": "Layer 2 - Navigation",
|
||||
"author": "KemoNine"
|
||||
},
|
||||
[
|
||||
{
|
||||
"x": 1,
|
||||
"a": 7
|
||||
},
|
||||
"TG(0)",
|
||||
"TO(2)",
|
||||
"TO(3)"
|
||||
],
|
||||
[
|
||||
"Pg Up",
|
||||
"↑",
|
||||
"Pg Dn",
|
||||
""
|
||||
],
|
||||
[
|
||||
"←",
|
||||
"↓",
|
||||
"→",
|
||||
"End"
|
||||
],
|
||||
[
|
||||
"Home",
|
||||
"",
|
||||
"",
|
||||
"Enter"
|
||||
],
|
||||
[
|
||||
{
|
||||
"a": 5
|
||||
},
|
||||
"Vol Up\nVol Dn\n\n\n\n\nMute",
|
||||
{
|
||||
"a": 7
|
||||
},
|
||||
"",
|
||||
"",
|
||||
""
|
||||
]
|
||||
]
|
BIN
nullbitsco/tidbit/layer-2---navigation.png
Normal file
After Width: | Height: | Size: 9.9 KiB |
Before Width: | Height: | Size: 9.5 KiB |
|
@ -1,7 +1,7 @@
|
|||
[
|
||||
{
|
||||
"backcolor": "#ffa100",
|
||||
"name": "Layer 2 - Number Pad",
|
||||
"name": "Layer 3 - Number Pad",
|
||||
"author": "KemoNine"
|
||||
},
|
||||
[
|
||||
|
@ -9,8 +9,8 @@
|
|||
"x": 1,
|
||||
"a": 7
|
||||
},
|
||||
"TG(0)",
|
||||
"Boot",
|
||||
"TO(0)",
|
||||
"Num Lock",
|
||||
"/"
|
||||
],
|
||||
[
|
BIN
nullbitsco/tidbit/layer-3---number-pad.png
Normal file
After Width: | Height: | Size: 9.9 KiB |
Before Width: | Height: | Size: 7.9 KiB |
|
@ -1,7 +1,7 @@
|
|||
[
|
||||
{
|
||||
"backcolor": "#00f3ff",
|
||||
"name": "Layer 3 - ZMK",
|
||||
"backcolor": "#5F9EA0",
|
||||
"name": "Layer 4 - ZMK",
|
||||
"author": "KemoNine"
|
||||
},
|
||||
[
|
||||
|
@ -9,7 +9,7 @@
|
|||
"x": 1,
|
||||
"a": 7
|
||||
},
|
||||
"TG(0)",
|
||||
"TO(0)",
|
||||
"Reset",
|
||||
"Boot"
|
||||
],
|
BIN
nullbitsco/tidbit/layer-4---zmk.png
Normal file
After Width: | Height: | Size: 14 KiB |
|
@ -1 +0,0 @@
|
|||
MOUSEKEY_ENABLE = yes
|