├── .gitignore ├── rotation_visualizer.html ├── .github └── workflows │ └── static.yml ├── README.md ├── Notes_and_text_files ├── Controller_adaptive_triggers_decoding.txt └── Input_Report.txt ├── webgl_rotation ├── init-buffers.js ├── draw-scene.js ├── webgl-cube.js └── webHID_interface.js ├── dual_visualizer.html ├── LICENSE └── homebrew.html /.gitignore: -------------------------------------------------------------------------------- 1 | webgl_rotation/.vs/* 2 | -------------------------------------------------------------------------------- /rotation_visualizer.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |
5 | 6 |11 | Use the WebHID API to connect to a 12 | Sony PlayStation 5 Sense Wireless Controller. 13 |
14 |Connect the controller to your computer using either Bluetooth or a USB cable.
16 |Then, click , select Wireless 17 | Controller and click the Connect button.
18 |19 | This page requires a Chromium-based browser like Google Chrome or 20 | Microsoft Edge. It uses WebHID API, 21 | which is only available on Windows, macOS, chromeOS, and Linux. 22 |
23 |