Added remote debugger and cleaned up several things Looks good to merge

This commit is contained in:
Kyle Brown
2018-10-26 14:26:15 -07:00
parent 2b28b99503
commit 15fea0189b
4 changed files with 44 additions and 25 deletions

View File

@@ -4,7 +4,6 @@ UART is supported, though other modes will come later such as Bluetooth and i2c.
Useful config options:
```python
keyboard.split_type = "UART" # Sets split mode to UART
keyboard.split_flip = True # If your boards are identical but one is flipped, this option is for you
keyboard.split_offsets = [6, 6, 6, 6] # This is the how many keys are on each column on the "Master" half
```
@@ -34,5 +33,6 @@ from kmk_side import split_side
# UART
To enable uart it's as simple as adding this line, of course changing the pin
```python
keyboard.split_type = "UART"
keyboard.uart = keyboard.init_uart(tx=board.SCL)
```