Be able to touch type using Xbox (done) and Oculus Touch (not done)
Currently there's no solution for touch typing with a controller of any kind.
- Install pygame from http://www.pygame.org/download.shtml
pip install pyautogui- With an Xbox controller plugged in:
python3 main.py - Reference
lib/maps.pyfor which button combos map to which letters
Fix how modifier keys are handled (tapping the button for 'shift' should leave it on till used)
main.pyinitializes the Xbox controller and starts listening for input- Input is passed to
lib/chordedwhich stores button state lib/chordedaskslib/mapswhat letter should be printed given the state- The letter is returned to the main loop and output
To the awesome r4dian for the windows xbox controller handling code.