From 1530c79dd7b72d9582e199a2f84c1d53d5777477 Mon Sep 17 00:00:00 2001 From: Florian K <37000563+flok@users.noreply.github.com> Date: Fri, 1 Jan 2021 11:36:35 +0100 Subject: [PATCH 1/2] Update install instructions Updated the install instructions with the hidapi download and placement. --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 13c9066..34e4c85 100644 --- a/README.md +++ b/README.md @@ -1,9 +1,9 @@ # 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 receive and update the controller. +control your dualsense through python. using the hid library this package implements the report features for controlling your new PS5 controller. # install -Just install the package from [pypi](https://pypi.org/project/pydualsense/) +Download [hidapi](https://github.com/libusb/hidapi/releases) and place the x64 .dll file into your System32 folder. After that install the package from [pypi](https://pypi.org/project/pydualsense/). ```bash pip install pydualsense @@ -22,7 +22,7 @@ ds.triggerL.setForce(1, 255) ds.close() # closing the controller ``` -See ``examples`` folder for some more ideas +See [examples](https://github.com/flok/pydualsense/tree/master/examples) folder for some more ideas # Help wanted From a3f697866b68c547d262deeae3dfa7f63edd6778 Mon Sep 17 00:00:00 2001 From: Florian K <37000563+flok@users.noreply.github.com> Date: Fri, 1 Jan 2021 19:01:30 +0100 Subject: [PATCH 2/2] Changed place for hidapi.dll Adding dlls to your System32 is not a good idea. Place the dll into your Workspace --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 34e4c85..f5ab9c6 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ control your dualsense through python. using the hid library this package implem # install -Download [hidapi](https://github.com/libusb/hidapi/releases) and place the x64 .dll file into your System32 folder. After that install the package from [pypi](https://pypi.org/project/pydualsense/). +Download [hidapi](https://github.com/libusb/hidapi/releases) and place the x64 .dll file into your Workspace. After that install the package from [pypi](https://pypi.org/project/pydualsense/). ```bash pip install pydualsense