aboutsummaryrefslogtreecommitdiff
path: root/keyboards/vitamins_included/readme.md
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/vitamins_included/readme.md')
-rw-r--r--keyboards/vitamins_included/readme.md126
1 files changed, 126 insertions, 0 deletions
diff --git a/keyboards/vitamins_included/readme.md b/keyboards/vitamins_included/readme.md
new file mode 100644
index 000000000..0163f154e
--- /dev/null
+++ b/keyboards/vitamins_included/readme.md
@@ -0,0 +1,126 @@
1Let's Split Vitamins Included
2======
3![Let's Split Vitamins included, assmebled in 3D printed case](https://i.imgur.com/btl0vNQ.jpg)
4
5This readme and most of the code are from https://github.com/ahtn/tmk_keyboard/
6
7
8**Hardware files for the Let's Split vitamins included are stored [here](http://github.com/duckle29/let-s-Split-v2/tree/onboardMCU)**
9
10## First Time Setup
11
12Clone the `qmk_firmware` repo and navigate to its top level directory. [Once your build environment is setup](https://docs.qmk.fm/getting_started_build_tools.html), you'll be able to generate the default .hex using the [build/compile instructions](https://docs.qmk.fm/build-compile-instructions) in the docs
13
14If everything worked correctly you will see a file:
15
16```bash
17lets_split_vitamins_rev1_YOUR_KEYMAP_NAME.hex
18```
19
20If you want, you can flash the hex file to the keyboard right after compilation, by adding `:avrdude` to the end of the make command like so:
21
22```bash
23make lets_split_vitamins/rev1:default:avrdude
24```
25
26This will both compile the hex, and flash the connected half.
27
28For 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
30
31Features
32--------
33
34For the full Quantum Mechanical Keyboard feature list, see [the parent readme.md](/readme.md).
35
36Some features supported by the firmware:
37
38* Either half can connect to the computer via USB, or both halves can be used
39 independently.
40* You only need 3 wires to connect the two halves. One for VCC, one for GND and one
41 for serial communication.
42* Optional support for I2C connection between the two halves if for some
43 reason you require a faster connection between the two halves. Note this
44 requires an extra wire between halves and pull-up resistors on the data lines.
45 This is supported on the vitamins included.
46 The extra data line can also be used for ws2812 type LEDs.
47 If neither I2C nor RGB underglow is used, a TRS cable can be used instead of the 4wire TRRS cables.
48
49Required Hardware
50-----------------
51|Amount| Description |
52|--|--|
53| 1 | PCB kit from novelkeys |
54| 48 | MX compatible switches |
55| 48 | 1U keycaps
56| 2 | Half cases. A 3D model for the left half is available [here](https://cad.onshape.com/documents/c6e5ae250d1e24fe46c9ef6c/w/d69f7049c0921df3d2b241f9/e/ecc2b176ab52a6d77bc55051). Mirror that to get a right-half case. Plate cases will be designed in the future.
57| 1 | USB-mini-B cable of your choice |
58| 1 | TRS / TRRS cable
59
60Optional Hardware
61-----------------
62
63A speaker can be hooked-up to the footprint on the PCBs. It is already enabled in the default firmware from github.
64
65A strip of WS2812 LEDs can be hooked up too, a guide will be written on how to do that once I get mine in the mail.
66The PCB and connectors can safely handle 1A of current, but the USB standard is only rated at 500mA. Keep that in mind when picking the amount of LEDs.
67
68
69## Using I2C
70
71On the left half PCB, there's two pads labled ***I2C Pullup*** if you want to use I2C, you need to bridge those two solder jumpers with a soldering iron.
72
73You can change your configuration between serial and i2c by modifying your `config.h` file.
74
75Notes on Software Configuration
76-------------------------------
77
78Configuring the firmware is similar to any other QMK project. One thing
79to note is that `MATRIX_ROWS` in `config.h` is the total number of rows between
80the two halves, so because the let's split vitamins included has 4 rows in each half, it's
81`MATRIX_ROWS=8`.
82
83Also, the current implementation assumes a maximum of 8 columns, but it would
84not be very difficult to adapt it to support more if required.
85
86
87## Entering bootloader
88If the keyboard isn't new, and has been flashed before, you need to enter bootloader.
89To enter bootloader, either use the assigned keys on the keymap, or if none have been put in the keymap, quickly short the reset to gnd twice. (Bottom pins of programming header, see image) ![Reset pins](https://i.imgur.com/LCXlv9W.png)
90
91If using the default keymap, there's a reset key-combination on each half:
92***Lower (SW23) and left-shift (SW13)*** on the left half, or
93***Raise(SW44) and Enter(SW42)*** on the right half
94It is recommended to add such reset keys to any custom keymaps. It shouldn't be necesarry to have one on each half, but the default layout has that.
95
96The board exits bootloader mode after 8 seconds, if you haven't started flashing.
97
98## EEPROM
99
100If this is the first time you're flashing the boards, you have to flash EEPROM
101
1020. If your keyboard is plugged in, unplug it
1031. Open a terminal, and navigate to the qmk_firmware folder
1042. Run `ls /dev | grep tty` Note down which ports you see
1052. Plug the keyboard in, if it's new, it should enter bootloader, if it's not new, see **Entering bootloader** on how to enter bootloader mode
1064. Right after entering bootloader, run `ls /dev | grep tty` again. There should be a new tty, this is the bootloader TTY, note it down. If nothing shows see **Entering bootloader** on how to enter bootloader mode
1076. For the left hand side, run `avrdude -c avr109 -p m32u4 -P /dev/ttyS1 -U eeprom:w:"./keyboards/lets_split_vitamins/eeprom-lefthand.eep":a`
108Replace ***/dev/ttyS1*** with the port you noted down earlier. If you're on windows using msys2, replace ***/dev/ttyS1*** with COM2, note that the number is one higher than the tty number.
109Do the same For the right hand, but change the file to ***eeprom-righthand.eep***
110
111Your EEPROM should be flashed :)
112
113In the future, you shouldn't need to flash EEPROM (it will in fact wear the eeprom memory, so don't)
114
115## Flashing
116If you haven't flashed EEPROM before, do that first.
117
118To flash keymaps onto the keyboard, use:
119```bash
120make lets_split_vitamins/rev1:[KEYMAP]:avrdude
121```
122from the qmk_firmware folder. Default being the default keymap.
123
124You can plug either half into USB and it will work. you can also remove the TRS/TRRS cable, and plug both halves in. (which is why the default layout has reset on both halves)
125
126Enjoy your keyboard! :D