├── .gitignore ├── CODE_OF_CONDUCT.md ├── COPYING ├── README.md ├── tmdrv.py └── tmdrv_devices ├── thrustmaster_t500rs.py ├── thrustmaster_tmx.py ├── thrustmaster_tsxw.py └── thrustmaster_tx.py /.gitignore: -------------------------------------------------------------------------------- 1 | # Python 2 | __pycache__/ 3 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/her001/tmdrv/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/her001/tmdrv/HEAD/COPYING -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/her001/tmdrv/HEAD/README.md -------------------------------------------------------------------------------- /tmdrv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/her001/tmdrv/HEAD/tmdrv.py -------------------------------------------------------------------------------- /tmdrv_devices/thrustmaster_t500rs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/her001/tmdrv/HEAD/tmdrv_devices/thrustmaster_t500rs.py -------------------------------------------------------------------------------- /tmdrv_devices/thrustmaster_tmx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/her001/tmdrv/HEAD/tmdrv_devices/thrustmaster_tmx.py -------------------------------------------------------------------------------- /tmdrv_devices/thrustmaster_tsxw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/her001/tmdrv/HEAD/tmdrv_devices/thrustmaster_tsxw.py -------------------------------------------------------------------------------- /tmdrv_devices/thrustmaster_tx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/her001/tmdrv/HEAD/tmdrv_devices/thrustmaster_tx.py --------------------------------------------------------------------------------