This post is older than 2 years and might not be relevant anymore
More Info: Consider searching for newer posts

Joystick

Hi,

I'm trying to implement scroll buttons (not the up-down buttons) using buttons provided on the development board. The scroll buttons will scroll in left-right and up-down directions. The array used is as follows and I also know that absolute should be used for joystick. I'm not understanding how to implement send function. Please assist. Thanks.

0x05, 0x01,                    // USAGE_PAGE (Generic Desktop)
		0x09, 0x04,                    // USAGE (Joystick)
		0xa1, 0x01,                    // COLLECTION (Application)
		0x85, 0x01,                    //   REPORT_ID (1)
		0xa1, 0x02,                    //   COLLECTION (Logical)
		0x09, 0x32,                    //     USAGE (Z)
		0x09, 0x31,                    //     USAGE (Y)
		0x09, 0x30,                    //     USAGE (X)
		0x15, 0x00,                    //     LOGICAL_MINIMUM (0)
		0x26, 0xff, 0x00,              //     LOGICAL_MAXIMUM (255)
		0x35, 0x00,                    //     PHYSICAL_MINIMUM (0)
		0x46, 0xff, 0x00,              //     PHYSICAL_MAXIMUM (255)
		0x75, 0x08,                    //     REPORT_SIZE (8)
		0x95, 0x03,                    //     REPORT_COUNT (3)
		0x81, 0x02,                    //     INPUT (Data,Var,Abs)
		0xc0,                          //   END_COLLECTION
    
		0x85, 0x02,                    // REPORT_ID (2)
		
		0xa1, 0x02,                    //   COLLECTION (Logical)
		0x05, 0x09,                    //     USAGE_PAGE (Button)
		0x29, 0x02,                    //     USAGE_MAXIMUM (Button 2)
		0x19, 0x01,                    //     USAGE_MINIMUM (Button 1)
		0x95, 0x02,                    //     REPORT_COUNT (2)
		0x75, 0x01,                    //     REPORT_SIZE (1)
		0x25, 0x01,                    //     LOGICAL_MAXIMUM (1)
		0x15, 0x00,                    //     LOGICAL_MINIMUM (0)
		0x81, 0x02,                    //     Input (Data, Variable, Absolute)
		0x95, 0x01,                    //     Report Count (1)
		0x75, 0x06,                    //     Report Size (6)
		0x81, 0x01,                    //     Input (Constant) for padding    
		0xc0,                          //   END_COLLECTION
		0xc0                           // END_COLLECTION

Related