qmk_firmware

QMK firmware for my keyboards (Corne, Sweep Ferris) and trackball (Ploopy Adept)
Log | Files | Refs | Submodules | LICENSE

config_mock_split_no_left.h (508B)


      1 // Copyright 2022-2023 Nick Brassel (@tzarc)
      2 // SPDX-License-Identifier: GPL-2.0-or-later
      3 #pragma once
      4 #include "config_encoder_common.h"
      5 
      6 #define MATRIX_ROWS 1
      7 #define MATRIX_COLS 1
      8 
      9 /* Here, "pins" from 0 to 31 are allowed. */
     10 #define ENCODER_A_PINS \
     11     {                  \
     12     }
     13 #define ENCODER_B_PINS \
     14     {                  \
     15     }
     16 #define ENCODER_A_PINS_RIGHT {0, 2}
     17 #define ENCODER_B_PINS_RIGHT {1, 3}
     18 
     19 #ifdef __cplusplus
     20 extern "C" {
     21 #endif
     22 
     23 #include "mock_split.h"
     24 
     25 #ifdef __cplusplus
     26 };
     27 #endif