You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jun 14, 2024. It is now read-only.
When running the python example, the sent bytes don't always line up with how the arduino is reading them.
For example, sending a bytearray of [128, 128, 128, 128, 1] should set both sticks to neutral and have no button presses.
[128, 128, 128, 128, 1]
LX LY RX RY C
However, most of the time this ends up out of sync, eg the 1 is read as a joystick input and a 128 as button presses.
[128, 128, 128, 128, 1]
C LX LY RX RY
Is there an easy fix I am missing somewhere?
I am using an Arduino Pro Micro
Thanks in advance