forked from karalabe/hid
-
Notifications
You must be signed in to change notification settings - Fork 13
/
hid.go
66 lines (56 loc) · 1.91 KB
/
hid.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
// hid - Gopher Interface Devices (USB HID)
// Copyright (c) 2017 Péter Szilágyi. All rights reserved.
//
// This file is released under the 3-clause BSD license. Note however that Linux
// support depends on libusb, released under GNU LGPL 2.1 or later.
// Package hid provides an interface for USB HID devices.
package hid
import "errors"
// ErrDeviceClosed is returned for operations where the device closed before or
// during the execution.
var ErrDeviceClosed = errors.New("hid: device closed")
// ErrUnsupportedPlatform is returned for all operations where the underlying
// operating system is not supported by the library.
var ErrUnsupportedPlatform = errors.New("hid: unsupported platform")
const (
BusUnknown = 0x00
BusUSB = 0x01
BusBluetooth = 0x02
BusI2C = 0x03
BusSPI = 0x04
)
type BusType int
func (t BusType) String() string {
switch t {
case BusUSB:
return "usb"
case BusBluetooth:
return "bluetooth"
case BusI2C:
return "i2c"
case BusSPI:
return "spi"
case BusUnknown:
fallthrough
default:
return "unknown"
}
}
// DeviceInfo is a hidapi info structure.
type DeviceInfo struct {
Path string // Platform-specific device path
VendorID uint16 // Device Vendor ID
ProductID uint16 // Device Product ID
Release uint16 // Device Release Number in binary-coded decimal, also known as Device Version Number
Serial string // Serial Number
Manufacturer string // Manufacturer String
Product string // Product string
UsagePage uint16 // Usage Page for this Device/Interface (Windows/Mac/hidraw only)
Usage uint16 // Usage for this Device/Interface (Windows/Mac/hidraw only)
// The USB interface which this logical device
// represents. Valid on both Linux implementations
// in all cases, and valid on the Windows implementation
// only if the device contains more than one interface.
Interface int
BusType BusType // Underlying bus type
}