mirror of
https://github.com/felis/USB_Host_Shield_2.0.git
synced 2024-03-22 11:31:26 +01:00
969eabb8d7
The following collisions resolved: hid.h -> usbhid.h hid.cpp -> usbhid.cpp HID -> USBHID HID_BOOT_PROTOCOL -> USB_HID_BOOT_PROTOCOL HID_PROTOCOL_NONE -> USB_HID_PROTOCOL_NONE HID_PROTOCOL_KEYBOARD -> USB_HID_PROTOCOL_KEYBOARD HID_PROTOCOL_MOUSE -> USB_HID_PROTOCOL_MOUSE As a result, it's possible to use the library together with Arduino's bundled HID / Mouse / Keyboard libraries (Leonardo, Micro, or Due). https://www.arduino.cc/en/Reference/MouseKeyboard
42 lines
819 B
C++
42 lines
819 B
C++
#if !defined(__HIDJOYSTICKRPTPARSER_H__)
|
|
#define __HIDJOYSTICKRPTPARSER_H__
|
|
|
|
#include <usbhid.h>
|
|
|
|
struct GamePadEventData
|
|
{
|
|
union { //axes and hut switch
|
|
uint32_t axes;
|
|
struct {
|
|
uint32_t x : 10;
|
|
uint32_t y : 10;
|
|
uint32_t hat : 4;
|
|
uint32_t twist : 8;
|
|
};
|
|
};
|
|
uint8_t buttons_a;
|
|
uint8_t slider;
|
|
uint8_t buttons_b;
|
|
};
|
|
|
|
class JoystickEvents
|
|
{
|
|
public:
|
|
virtual void OnGamePadChanged(const GamePadEventData *evt);
|
|
};
|
|
|
|
#define RPT_GAMEPAD_LEN sizeof(GamePadEventData)/sizeof(uint8_t)
|
|
|
|
class JoystickReportParser : public HIDReportParser
|
|
{
|
|
JoystickEvents *joyEvents;
|
|
|
|
uint8_t oldPad[RPT_GAMEPAD_LEN];
|
|
|
|
public:
|
|
JoystickReportParser(JoystickEvents *evt);
|
|
|
|
virtual void Parse(USBHID *hid, bool is_rpt_id, uint8_t len, uint8_t *buf);
|
|
};
|
|
|
|
#endif // __HIDJOYSTICKRPTPARSER_H__
|