├── .gitignore ├── LICENSE ├── README.md ├── example └── main.go ├── hid.go ├── usb_linux.go ├── usbdef32_linux.go ├── usbdef64_linux.go └── usbdef_linux.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zserge/hid/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zserge/hid/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zserge/hid/HEAD/README.md -------------------------------------------------------------------------------- /example/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zserge/hid/HEAD/example/main.go -------------------------------------------------------------------------------- /hid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zserge/hid/HEAD/hid.go -------------------------------------------------------------------------------- /usb_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zserge/hid/HEAD/usb_linux.go -------------------------------------------------------------------------------- /usbdef32_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zserge/hid/HEAD/usbdef32_linux.go -------------------------------------------------------------------------------- /usbdef64_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zserge/hid/HEAD/usbdef64_linux.go -------------------------------------------------------------------------------- /usbdef_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zserge/hid/HEAD/usbdef_linux.go --------------------------------------------------------------------------------