1 /* 2 * Copyright 2004-2019, Haiku Inc. All Rights Reserved. 3 * Distributed under the terms of the MIT License. 4 */ 5 #ifndef _USB_HID_PAGE_VR_CONTROLS_H 6 #define _USB_HID_PAGE_VR_CONTROLS_H 7 8 9 /* Reference: 10 * HID Usage Page 0x03: VR Controls 11 * HID Usage Tables Ver. 1.12 12 * http://www.usb.org/developers/devclass_docs/Hut1_12.pdf 13 */ 14 15 // Usage IDs 16 enum { 17 B_HID_UID_VR_BELT = 0x01, 18 B_HID_UID_VR_BODY_SUIT, 19 B_HID_UID_VR_FLEXOR, 20 B_HID_UID_VR_GLOVE, 21 B_HID_UID_VR_HEAD_TRACKER, 22 B_HID_UID_VR_HEAD_MOUNTED_DISPLAY, 23 B_HID_UID_VR_HAND_TRACKER, 24 B_HID_UID_VR_OCULOMETER, 25 B_HID_UID_VR_VEST, 26 B_HID_UID_VR_ANIMATRONIC_DEVICE, 27 28 B_HID_UID_VR_STEREO_ENABLE = 0x20, 29 B_HID_UID_VR_DISPLAY_ENABLE, 30 }; 31 32 33 #endif // _USB_HID_PAGE_VR_CONTROLS_H 34