the finished adapter core is like a capsule of two connectors with the PCB in between, 5 pin male on
the finished adapter core is like a capsule of two connectors with the PCB in between, 5 pin male on one end, 6pin female on the other


pip install pysdl2 pysdl2-dll and ready to go 



def find_haptic_joystick():
for i in range(0, SDL_NumJoysticks()):
joy = SDL_JoystickOpen(i)
try:
if SDL_JoystickIsHaptic(joy):
logging.info(f"Found FFB: {SDL_JoystickName(joy)} index {i}")
break
finally:
SDL_JoystickClose(joy)
return i