├── .github └── workflows │ └── build-ubuntu-sdist.yml ├── LICENSE ├── README.md ├── examples ├── haptic_game.py ├── requirements.txt └── simple_callback.py ├── pyOpenHaptics ├── __init__.py ├── exceptions.py ├── hd.py ├── hd_callback.py ├── hd_define.py ├── hd_device.py └── hdu_matrix.py └── pyproject.toml /.github/workflows/build-ubuntu-sdist.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikelitu/pyOpenHaptics/HEAD/.github/workflows/build-ubuntu-sdist.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikelitu/pyOpenHaptics/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikelitu/pyOpenHaptics/HEAD/README.md -------------------------------------------------------------------------------- /examples/haptic_game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikelitu/pyOpenHaptics/HEAD/examples/haptic_game.py -------------------------------------------------------------------------------- /examples/requirements.txt: -------------------------------------------------------------------------------- 1 | pygame -------------------------------------------------------------------------------- /examples/simple_callback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikelitu/pyOpenHaptics/HEAD/examples/simple_callback.py -------------------------------------------------------------------------------- /pyOpenHaptics/__init__.py: -------------------------------------------------------------------------------- 1 | from .hd import * 2 | -------------------------------------------------------------------------------- /pyOpenHaptics/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikelitu/pyOpenHaptics/HEAD/pyOpenHaptics/exceptions.py -------------------------------------------------------------------------------- /pyOpenHaptics/hd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikelitu/pyOpenHaptics/HEAD/pyOpenHaptics/hd.py -------------------------------------------------------------------------------- /pyOpenHaptics/hd_callback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikelitu/pyOpenHaptics/HEAD/pyOpenHaptics/hd_callback.py -------------------------------------------------------------------------------- /pyOpenHaptics/hd_define.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikelitu/pyOpenHaptics/HEAD/pyOpenHaptics/hd_define.py -------------------------------------------------------------------------------- /pyOpenHaptics/hd_device.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikelitu/pyOpenHaptics/HEAD/pyOpenHaptics/hd_device.py -------------------------------------------------------------------------------- /pyOpenHaptics/hdu_matrix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikelitu/pyOpenHaptics/HEAD/pyOpenHaptics/hdu_matrix.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikelitu/pyOpenHaptics/HEAD/pyproject.toml --------------------------------------------------------------------------------