Files
pydualsense/README.md
2020-11-29 13:18:40 +01:00

641 B

pydualsense

control your dualsense through python. using the hid library this module implements the sending report for controlling you new PS5 controller. It creates a background thread to constantly update the controller.

dependecies

  • hid >= 1.0.4

install

Just install the package from pypi

pip install pydualsense

usage


from pydualsense import pydualsense

ds = pydualsense() # open controller
ds.setColor(255,0,0) # set touchpad color to red
ds.close() # closing the controller

Coming soon

  • reading the states of the controller to enable a fully compatibility with python
  • add documentation