You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

183 lines
6.5 KiB

7 years ago
7 years ago
  1. Let's Split
  2. ======
  3. This readme and most of the code are from https://github.com/ahtn/tmk_keyboard/
  4. Split keyboard firmware for Arduino Pro Micro or other ATmega32u4
  5. based boards.
  6. **Hardware files for the Let's Split are now stored at http://qmk.fm/lets_split/**
  7. ## Build Guide
  8. A build guide for putting together the Let's Split v2 can be found here: [An Overly Verbose Guide to Building a Let's Split Keyboard](https://github.com/nicinabox/lets-split-guide)
  9. There is additional information there about flashing and adding RGB underglow.
  10. ## First Time Setup
  11. Download or clone the whole firmware and navigate to the keyboards/lets_split directory. Once your dev env is setup, you'll be able to generate the default .hex using:
  12. ```
  13. $ make rev2
  14. ```
  15. You will see a lot of output and if everything worked correctly you will see the built hex files:
  16. ```
  17. lets_split_rev2_serial.hex
  18. lets_split_rev2_i2c.hex
  19. ```
  20. If you would like to use one of the alternative keymaps, or create your own, copy one of the existing [keymaps](keymaps/) and run make like so:
  21. ```
  22. $ make rev2-YOUR_KEYMAP_NAME
  23. ```
  24. If everything worked correctly you will see a file:
  25. ```
  26. lets_split_rev2_YOUR_KEYMAP_NAME.hex
  27. ```
  28. For more information on customizing keymaps, take a look at the primary documentation for [Customizing Your Keymap](/readme.md##customizing-your-keymap) in the main readme.md.
  29. ### Let's split 1.0
  30. If you have a first generation Let's Split you will need to use the revision 1 code. To do so, use `rev1` in all your commands instead.
  31. Features
  32. --------
  33. For the full Quantum Mechanical Keyboard feature list, see [the parent readme.md](/readme.md).
  34. Some features supported by the firmware:
  35. * Either half can connect to the computer via USB, or both halves can be used
  36. independently.
  37. * You only need 3 wires to connect the two halves. Two for VCC and GND and one
  38. for serial communication.
  39. * Optional support for I2C connection between the two halves if for some
  40. reason you require a faster connection between the two halves. Note this
  41. requires an extra wire between halves and pull-up resistors on the data lines.
  42. Required Hardware
  43. -----------------
  44. Apart from diodes and key switches for the keyboard matrix in each half, you
  45. will need:
  46. * 2 Arduino Pro Micro's. You can find theses on aliexpress for ≈3.50USD each.
  47. * 2 TRRS sockets and 1 TRRS cable, or 2 TRS sockets and 1 TRS cable
  48. Alternatively, you can use any sort of cable and socket that has at least 3
  49. wires. If you want to use I2C to communicate between halves, you will need a
  50. cable with at least 4 wires and 2x 4.7kΩ pull-up resistors
  51. Optional Hardware
  52. -----------------
  53. A speaker can be hooked-up to either side to the `5` (`C6`) pin and `GND`, and turned on via `AUDIO_ENABLE`.
  54. Wiring
  55. ------
  56. The 3 wires of the TRS/TRRS cable need to connect GND, VCC, and digital pin 3 (i.e.
  57. PD0 on the ATmega32u4) between the two Pro Micros.
  58. Then wire your key matrix to any of the remaining 17 IO pins of the pro micro
  59. and modify the `matrix.c` accordingly.
  60. The wiring for serial:
  61. ![serial wiring](https://i.imgur.com/C3D1GAQ.png)
  62. The wiring for i2c:
  63. ![i2c wiring](https://i.imgur.com/Hbzhc6E.png)
  64. The pull-up resistors may be placed on either half. It is also possible
  65. to use 4 resistors and have the pull-ups in both halves, but this is
  66. unnecessary in simple use cases.
  67. Notes on Software Configuration
  68. -------------------------------
  69. Configuring the firmware is similar to any other QMK project. One thing
  70. to note is that `MATIX_ROWS` in `config.h` is the total number of rows between
  71. the two halves, i.e. if your split keyboard has 4 rows in each half, then
  72. `MATRIX_ROWS=8`.
  73. Also the current implementation assumes a maximum of 8 columns, but it would
  74. not be very difficult to adapt it to support more if required.
  75. Flashing
  76. -------
  77. From the keymap directory run `make SUBPROJECT-KEYMAP-avrdude` for automatic serial port resolution and flashing.
  78. Example: `make rev2-serial-avrdude`
  79. Choosing which board to plug the USB cable into (choosing Master)
  80. --------
  81. Because the two boards are identical, the firmware has logic to differentiate the left and right board.
  82. It uses two strategies to figure things out: look at the EEPROM (memory on the chip) or looks if the current board has the usb cable.
  83. The EEPROM approach requires additional setup (flashing the eeeprom) but allows you to swap the usb cable to either side.
  84. The USB cable approach is easier to setup and if you just want the usb cable on the left board, you do not need to do anything extra.
  85. ### Setting the left hand as master
  86. If you always plug the usb cable into the left board, nothing extra is needed as this is the default. Comment out `EE_HANDS` and comment out `I2C_MASTER_RIGHT` or `MASTER_RIGHT` if for some reason it was set.
  87. ### Setting the right hand as master
  88. If you always plug the usb cable into the right board, add an extra flag to your `config.h`
  89. ```
  90. #define MASTER_RIGHT
  91. ```
  92. ### Setting EE_hands to use either hands as master
  93. If you define `EE_HANDS` in your `config.h`, you will need to set the
  94. EEPROM for the left and right halves.
  95. The EEPROM is used to store whether the
  96. half is left handed or right handed. This makes it so that the same firmware
  97. file will run on both hands instead of having to flash left and right handed
  98. versions of the firmware to each half. To flash the EEPROM file for the left
  99. half run:
  100. ```
  101. avrdude -p atmega32u4 -P $(COM_PORT) -c avr109 -U eeprom:w:eeprom-lefthand.eep
  102. // or the equivalent in dfu-programmer
  103. ```
  104. and similarly for right half
  105. ```
  106. avrdude -p atmega32u4 -P $(COM_PORT) -c avr109 -U eeprom:w:eeprom-righhand.eep
  107. // or the equivalent in dfu-programmer
  108. ```
  109. NOTE: replace `$(COM_PORT)` with the port of your device (e.g. `/dev/ttyACM0`)
  110. After you have flashed the EEPROM, you then need to set `EE_HANDS` in your config.h, rebuild the hex files and reflash.
  111. Note that you need to program both halves, but you have the option of using
  112. different keymaps for each half. You could program the left half with a QWERTY
  113. layout and the right half with a Colemak layout using bootmagic's default layout option.
  114. Then if you connect the left half to a computer by USB the keyboard will use QWERTY and Colemak when the
  115. right half is connected.
  116. Notes on Using Pro Micro 3.3V
  117. -----------------------------
  118. Do update the `F_CPU` parameter in `rules.mk` to `8000000` which reflects
  119. the frequency on the 3.3V board.
  120. Also, if the slave board is producing weird characters in certain columns,
  121. update the following line in `matrix.c` to the following:
  122. ```
  123. // _delay_us(30); // without this wait read unstable value.
  124. _delay_us(300); // without this wait read unstable value.
  125. ```