arduino-pico/libraries/Joystick/docs
Earle F. Philhower, III bd902a93f5
Add true 10- and 16-bit joystick modes (#2276)
Fixes #2275

Adds `Joystick.use10bit` and `Joystick.use16bit` methods.  10-bit is
unsigned from 0...1023 while 16-bit is signed -32767..32767.
Defines a new HID descriptor to support the increased resolution.
2024-07-18 16:07:29 -07:00
..
api.md Add true 10- and 16-bit joystick modes (#2276) 2024-07-18 16:07:29 -07:00
readme.md Use generic HID classes to minimize code duplic'n (#1254) 2023-03-03 11:12:09 -08:00

Joystick library

The Joystick functions enable a RP2040 board to act as a HID game controller.

To use this library:

#include <Joystick.h>

Examples

  • [Joystick-AllFunctions] Includes example calls for each Joystick function