qmk_firmware

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

readme.md (646B)


      1 # Information for Various BastardKB Hardware
      2 
      3 ## Handedness Pin on Elite-C Holder
      4 The [Elite-C Holder](https://github.com/Bastardkb/Elite-C-holder) supports setting [handedness by pin](https://docs.qmk.fm/features/split_keyboard#handedness-by-pin) on pin F1 of an Elite-C.
      5 
      6 To utilise this, you must be using an Elite-C compatible development board (with the bottom 5 pins broken out) and install the necessary resistor. The following firmware configuration can be made in your keymap directory:
      7 ```Makefile
      8 # rules.mk
      9 
     10 PIN_COMPATIBLE = elite_c
     11 ```
     12 
     13 ```c
     14 // config.h
     15 #pragma once
     16 
     17 #define SPLIT_HAND_PIN F1
     18 #define SPLIT_HAND_PIN_LOW_IS_LEFT
     19 ```