Troubleshooting Split Keyboard Using Dual Pico 2040's and KMK
Hi All,
I feel like I've exhausted all the documentation and videos I can find on the subject and don't know where else to turn. Here's my set up
Split keyboard that is asymmetrical. Both sides have 5 rows and 7 columns. I have an pico on each side.
I used POG (shoutout to Jan Lunge) to install KMK and configure the halves. I can get both sides to work and type when they are connected independently. However, when connected together, I can only get key presses to register via Serial console for the left side, but the right side does not register key presses in the serial console.
Both sides are connected with jumper wires right now as follows on the pico
Pin 40 - VBUS
Pin 38 - GND
Pin 0 - TX
Pin 1 - RX
Here's the snippet of code for the split portion
self.split = Split(
split_side=side,
split_target_left=pog.splitTargetLeft,
split_type=SplitType.UART,
data_pin=board.GP1,
data_pin2=board.GP0,
use_pio=True,
split_flip=False,
uart_flip=pog.splitUartFlip)