-
Notifications
You must be signed in to change notification settings - Fork 0
/
README
39 lines (27 loc) · 970 Bytes
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
Description
-----------
This is a small demo project to test problematic sending of HID Feature
Reports on OSX using hidapi [1]. The problems were originally discovered
using the PlayStation Move Motion Controller with the PS Move API [2] on
OSX. This program is thus based mainly on PS Move API's HID-related code
and targets the Move Motion Controller only.
While sending HID Feature Reports to the Move Motion Controller via
Bluetooth works fine on Linux, this does not work at all on OSX. The only
working fallback seems to be sending via USB which is not always possible
(or desired).
Building the project
--------------------
1. Clone the repository
git clone git://github.com/nitsch/test-hid-feature.git
cd test-hid-feature
git submodule init
git submodule update
2. Build the project
mkdir build
cd build
cmake ..
make
References
----------
[1] https://github.com/signal11/hidapi
[2] https://github.com/thp/psmoveapi/