From b72841e3ff7220c7db44ae523c173321d5750497 Mon Sep 17 00:00:00 2001 From: B Stack Date: Sun, 3 Jul 2022 23:06:09 -0400 Subject: initial commit --- helper.py | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100755 helper.py (limited to 'helper.py') diff --git a/helper.py b/helper.py new file mode 100755 index 0000000..b94ded6 --- /dev/null +++ b/helper.py @@ -0,0 +1,21 @@ +#!/usr/bin/env python3 +# Purpose: Display the name of the attached game controller +from sdl2 import * +import sdl2.ext, ctypes + +def get_joystick(): + running = True + SDL_Init(SDL_INIT_JOYSTICK) + sdl2.ext.init() + while running: + event = SDL_Event() + while SDL_PollEvent(ctypes.byref(event)) != 0: + if event.type == SDL_JOYDEVICEADDED: + b = SDL_JoystickOpen(event.jdevice.which) + c = SDL_JoystickName(b).decode('UTF-8') + print(f"Device: {c}") + #running = False + #return b + +if __name__ == "__main__": + get_joystick() -- cgit