Compare commits
5 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
7c79dc5fbf | ||
|
98271e866f | ||
|
caa2062cea | ||
|
9359e6eac4 | ||
|
c54f58bcee |
@@ -6,4 +6,5 @@ This is the front page for the API documentation of the **pydualsense** library.
|
|||||||
|
|
||||||
.. toctree::
|
.. toctree::
|
||||||
ds_enum
|
ds_enum
|
||||||
ds_main
|
ds_main
|
||||||
|
ds_eventsystem
|
10
docs/source/ds_eventsystem.rst
Normal file
10
docs/source/ds_eventsystem.rst
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
pydualsense event system classes
|
||||||
|
=========================
|
||||||
|
|
||||||
|
The `Event System` implements the event system used for the button callbacks
|
||||||
|
|
||||||
|
.. automodule:: pydualsense.event_system
|
||||||
|
:noindex:
|
||||||
|
:members:
|
||||||
|
:undoc-members:
|
||||||
|
:show-inheritance:
|
@@ -17,6 +17,7 @@ Contents
|
|||||||
usage
|
usage
|
||||||
api
|
api
|
||||||
examples
|
examples
|
||||||
|
modules
|
||||||
|
|
||||||
|
|
||||||
TODOs
|
TODOs
|
||||||
|
@@ -415,8 +415,8 @@ class pydualsense:
|
|||||||
# 0x80 ???
|
# 0x80 ???
|
||||||
outReport[2] = 0x1 | 0x2 | 0x4 | 0x10 | 0x40 # [2]
|
outReport[2] = 0x1 | 0x2 | 0x4 | 0x10 | 0x40 # [2]
|
||||||
|
|
||||||
outReport[3] = self.leftMotor # left low freq motor 0-255 # [3]
|
outReport[3] = self.rightMotor # right low freq motor 0-255 # [3]
|
||||||
outReport[4] = self.rightMotor # right low freq motor 0-255 # [4]
|
outReport[4] = self.leftMotor # left low freq motor 0-255 # [4]
|
||||||
|
|
||||||
# outReport[5] - outReport[8] audio related
|
# outReport[5] - outReport[8] audio related
|
||||||
|
|
||||||
|
2
setup.py
2
setup.py
@@ -6,7 +6,7 @@ with open("README.md", "r") as fh:
|
|||||||
|
|
||||||
setup(
|
setup(
|
||||||
name='pydualsense',
|
name='pydualsense',
|
||||||
version='0.6.2',
|
version='0.6.3',
|
||||||
description='use your DualSense (PS5) controller with python',
|
description='use your DualSense (PS5) controller with python',
|
||||||
long_description=long_description,
|
long_description=long_description,
|
||||||
long_description_content_type="text/markdown",
|
long_description_content_type="text/markdown",
|
||||||
|
Reference in New Issue
Block a user