When my order is eventually built. I will have the opportunity to order a monster.tech plate?
When my order is eventually built. I will have the opportunity to order a monster.tech plate?


pip install pysdl2 pysdl2-dll and ready to go 



pip install pysdl2 pysdl2-dlldef 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