fix typos in Split docs

This commit is contained in:
Stefan Foulis 2022-06-05 12:04:56 +02:00 committed by xs5871
parent b04b740f9a
commit 093d0329e6

View File

@ -35,11 +35,11 @@ split = Split(
split_flip=True, # If both halves are the same, but flipped, set this True
split_side=None, # Sets if this is to SplitSide.LEFT or SplitSide.RIGHT, or use EE hands
split_type=SplitType.UART, # Defaults to UART
split_target_left=True, # If you want the right to be the target, change this to false
split_target_left=True, # If you want the right to be the target, change this to False
uart_interval=20, # Sets the uarts delay. Lower numbers draw more power
data_pin=None, # The primary data pin to talk to the secondary device with
data_pin2=None, # Second uart pin to allow 2 way communication
target_left=True, # Assumes that left will be the one on USB. Set to folse if it will be the right
target_left=True, # Assumes that left will be the one on USB. Set to False if it will be the right
uart_flip=True, # Reverses the RX and TX pins if both are provided
use_pio=False, # Use RP2040 PIO implementation of UART. Required if you want to use other pins than RX/TX
)