Browse Source

[Keymap] Pvinis/update for iris (#5889)

* add default functions

* some indenting

* add ctl and alt

* maybe?
pull/5897/head
Pavlos Vinieratos 5 years ago
committed by Drashna Jaelre
parent
commit
1a28906a3d
5 changed files with 24 additions and 15 deletions
  1. +5
    -5
      keyboards/keebio/iris/keymaps/pvinis/config.h
  2. +6
    -8
      keyboards/keebio/iris/keymaps/pvinis/keymap.c
  3. +1
    -0
      users/pvinis/config.h
  4. +10
    -0
      users/pvinis/pvinis.c
  5. +2
    -2
      users/pvinis/pvinis.h

+ 5
- 5
keyboards/keebio/iris/keymaps/pvinis/config.h View File

@ -2,9 +2,9 @@
#ifdef PRODUCT
#undef PRODUCT
#define PRODUCT Iris Keyboard - pvinis
#endif // PRODUCT
#undef PRODUCT
#define PRODUCT Iris Keyboard - pvinis
#endif
// Use I2C or Serial, not both
@ -20,5 +20,5 @@
// choose pin to use for audio. c6 is the one iris uses.
#ifdef AUDIO_ENABLE
#define C6_AUDIO
#endif // AUDIO_ENABLE
#define C6_AUDIO
#endif

+ 6
- 8
keyboards/keebio/iris/keymaps/pvinis/keymap.c View File

@ -23,20 +23,18 @@
#endif
#ifdef AUDIO_ENABLE
//#define STARTUP_SONG SONG(SONIC_RING)
// #define STARTUP_SONG SONG(SONIC_RING)
#endif
#ifdef AUDIO_ENABLE
float tone_sonic[][2] = SONG(IN_LIKE_FLINT);
float tone_1[][2] = SONG(QWERTY_SOUND);
float tone_2[][2] = SONG(OLD_SPICE);
float tone_3[][2] = SONG(OVERWATCH_THEME);
float tone_4[][2] = SONG(QWERTY_SOUND);
float tone_sonic[][2] = SONG(IN_LIKE_FLINT);
float tone_1[][2] = SONG(QWERTY_SOUND);
float tone_2[][2] = SONG(OLD_SPICE);
float tone_3[][2] = SONG(OVERWATCH_THEME);
float tone_4[][2] = SONG(QWERTY_SOUND);
#endif
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
// ,-----------------------------. ,-----------------------------.


+ 1
- 0
users/pvinis/config.h View File

@ -2,6 +2,7 @@
#ifdef AUDIO_ENABLE
// #define STARTUP_SONG SONG(SONIC_RING)
// #define DAC_SAMPLE_MAX 65535U // maybe this works for volume?
#endif
// allow rolling when keys have hold functionality


+ 10
- 0
users/pvinis/pvinis.c View File

@ -77,3 +77,13 @@ qk_tap_dance_action_t tap_dance_actions[] = {
void keyboard_post_init_user(void) {
keyboard_post_init_user_local();
}
// 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;
}

+ 2
- 2
users/pvinis/pvinis.h View File

@ -78,8 +78,8 @@ enum {
#define _________________QWERTY_R2_________________ KC_H , KC_J , KC_K , KC_L , KC_SCLN
#define _________________QWERTY_R3_________________ KC_N , KC_M , KC_COMM, KC_DOT , KC_SLSH
#define _____________MOD_QWERTY_L2_________________ KC_A , SFT_T(KC_S), GUI_T(KC_D), KC_F , KC_G
#define _____________MOD_QWERTY_R2_________________ KC_H , KC_J , GUI_T(KC_K), SFT_T(KC_L), KC_SCLN
#define _____________MOD_QWERTY_L2_________________ CTL_T(KC_A), SFT_T(KC_S), GUI_T(KC_D), ALT_T(KC_F), KC_G
#define _____________MOD_QWERTY_R2_________________ KC_H , ALT_T(KC_J), GUI_T(KC_K), SFT_T(KC_L), CTL_T(KC_SCLN)
// ,-----+-----+-----+-----+-----, ,-----+-----+-----+-----+-----,
// | Q | G | M | L | W | | Y | F | I | O | P |


Loading…
Cancel
Save