forked from mirrors/qmk_userspace
update pvinis keymap (#8746)
* update a bunch of stuff Better rules, better config, added encoders, lights, audio. * some fmt * more fmt
This commit is contained in:
parent
6fb048fdaf
commit
f6b40da7f8
8 changed files with 620 additions and 481 deletions
|
@ -2,88 +2,97 @@
|
|||
#include "version.h"
|
||||
|
||||
#ifdef AUDIO_ENABLE
|
||||
#include "audio.h"
|
||||
#endif // AUDIO_ENABLE
|
||||
|
||||
|
||||
#ifdef AUDIO_ENABLE
|
||||
// float tone_katamari_rolling_star[][2] = SONG(KATAMARI_ROLLING_STAR);
|
||||
#endif // AUDIO_ENABLE
|
||||
# include "audio.h"
|
||||
|
||||
float song_sonic_ring[][2] = SONG(SONIC_RING);
|
||||
float song_coin_sound[][2] = SONG(COIN_SOUND);
|
||||
float song_test[][2] = SONG(QWERTY_SOUND);
|
||||
#endif
|
||||
|
||||
// SYMBOL + SYSCTL = KBCTL
|
||||
uint32_t layer_state_set_user(uint32_t state) {
|
||||
uint32_t intermediate_state = update_tri_layer_state(state, LR_SYMBOL, LR_SYSCTL, LR_KBCTL);
|
||||
intermediate_state = layer_state_set_user_local(intermediate_state);
|
||||
return intermediate_state;
|
||||
uint32_t intermediate_state = update_tri_layer_state(state, LR_SYMBOL, LR_SYSCTL, LR_KBCTL);
|
||||
intermediate_state = layer_state_set_user_keymap(intermediate_state);
|
||||
return intermediate_state;
|
||||
}
|
||||
|
||||
|
||||
// functions for the individual keymaps to implement if they need something extra
|
||||
__attribute__ ((weak))
|
||||
bool process_record_keymap(uint16_t keycode, keyrecord_t *record) {
|
||||
return true;
|
||||
}
|
||||
__attribute__((weak)) bool process_record_keymap(uint16_t keycode, keyrecord_t *record) { return true; }
|
||||
|
||||
|
||||
// handle my own keycodes
|
||||
// Handle my own keycodes.
|
||||
bool process_record_user(uint16_t keycode, keyrecord_t *record) {
|
||||
switch (keycode) {
|
||||
switch (keycode) {
|
||||
case PV_VRSN:
|
||||
if (record->event.pressed) {
|
||||
SEND_STRING(QMK_KEYBOARD "/" QMK_KEYMAP " @ " QMK_VERSION);
|
||||
}
|
||||
return false;
|
||||
|
||||
case PV_VRSN:
|
||||
if (record->event.pressed) {
|
||||
SEND_STRING(QMK_KEYBOARD "/" QMK_KEYMAP " @ " QMK_VERSION);
|
||||
}
|
||||
return false;
|
||||
|
||||
case PV_MAKE:
|
||||
if (!record->event.pressed) {
|
||||
SEND_STRING("make " QMK_KEYBOARD ":" QMK_KEYMAP
|
||||
case PV_MAKE:
|
||||
// make ergodox_ez:pvinis:teensy
|
||||
if (!record->event.pressed) {
|
||||
SEND_STRING("make " QMK_KEYBOARD ":" QMK_KEYMAP
|
||||
#if (defined(BOOTLOADER_DFU) || defined(BOOTLOADER_LUFA_DFU) || defined(BOOTLOADER_QMK_DFU))
|
||||
":dfu"
|
||||
":dfu"
|
||||
#elif defined(BOOTLOADER_HALFKAY)
|
||||
":teensy"
|
||||
":teensy"
|
||||
#elif defined(BOOTLOADER_CATERINA)
|
||||
":avrdude"
|
||||
":avrdude"
|
||||
#endif
|
||||
SS_TAP(X_ENTER)
|
||||
);
|
||||
}
|
||||
return false;
|
||||
SS_TAP(X_ENTER));
|
||||
}
|
||||
return false;
|
||||
|
||||
case PV_FLSH:
|
||||
reset_keyboard();
|
||||
return false;
|
||||
case PV_FLSH:
|
||||
reset_keyboard();
|
||||
return false;
|
||||
|
||||
case PV_KTMR:
|
||||
if (record->event.pressed) {
|
||||
case PV_SSNC:
|
||||
if (record->event.pressed) {
|
||||
#ifdef AUDIO_ENABLE
|
||||
// PLAY_SONG(tone_katamari_rolling_star);
|
||||
PLAY_SONG(song_sonic_ring);
|
||||
#endif
|
||||
}
|
||||
return false;
|
||||
}
|
||||
return process_record_keymap(keycode, record);
|
||||
}
|
||||
}
|
||||
return false;
|
||||
|
||||
case PV_SCIN:
|
||||
if (record->event.pressed) {
|
||||
#ifdef AUDIO_ENABLE
|
||||
PLAY_SONG(song_coin_sound);
|
||||
#endif
|
||||
}
|
||||
return false;
|
||||
|
||||
case PV_TEST:
|
||||
if (record->event.pressed) {
|
||||
#ifdef AUDIO_ENABLE
|
||||
PLAY_SONG(song_test);
|
||||
#endif
|
||||
}
|
||||
return false;
|
||||
}
|
||||
return process_record_keymap(keycode, record);
|
||||
}
|
||||
|
||||
#ifdef TAP_DANCE_ENABLE
|
||||
qk_tap_dance_action_t tap_dance_actions[] = {
|
||||
};
|
||||
#endif // TAP_DANCE_ENABLE
|
||||
qk_tap_dance_action_t tap_dance_actions[] = {};
|
||||
#endif
|
||||
|
||||
void keyboard_post_init_rgb_light(void) {
|
||||
rgblight_sethsv(HSV_GOLD);
|
||||
rgblight_mode(RGBLIGHT_MODE_BREATHING);
|
||||
// rgblight_mode(RGBLIGHT_MODE_KNIGHT+1);
|
||||
}
|
||||
|
||||
// init stuff
|
||||
// Init stuff.
|
||||
void keyboard_post_init_user(void) {
|
||||
keyboard_post_init_user_local();
|
||||
#if defined(RGBLIGHT_ENABLE)
|
||||
keyboard_post_init_rgb_light();
|
||||
#endif
|
||||
keyboard_post_init_user_keymap();
|
||||
}
|
||||
|
||||
// Default functions.
|
||||
__attribute__((weak)) void keyboard_post_init_user_keymap(void) {}
|
||||
|
||||
// default functions
|
||||
__attribute__ ((weak))
|
||||
void keyboard_post_init_user_local(void) {}
|
||||
|
||||
__attribute__ ((weak))
|
||||
uint32_t layer_state_set_user_local(uint32_t state) {
|
||||
return state;
|
||||
}
|
||||
__attribute__((weak)) uint32_t layer_state_set_user_keymap(uint32_t state) { return state; }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue