-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhardware.go
84 lines (63 loc) · 1.19 KB
/
hardware.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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
package benjamin
import (
"image"
"github.com/karalabe/hid"
)
type Device interface {
Manufacturer() string
Product() string
Serial() string
Open() error
Close() error
Reset() error
// Clear all displays and buttons to black.
Clear() error
Events() <-chan Event
Surface
}
type USBDevice interface {
DeviceInfo() hid.DeviceInfo
}
type Surface interface {
Display(int) Display
Displays() int
DisplayArea() Screen
Encoder(int) Encoder
Encoders() int
Button(int) Button
ButtonAt(image.Point) Button
Buttons() int
ButtonLayout() image.Point
ButtonArea() Screen
SetBrightness(float64) error
}
type Peripheral interface {
// Surface the pheripheral is connected to.
Surface() Surface
// Index of the pheripheral.
Index() int
}
type Drawable interface {
Size() image.Point
SetImage(image.Image) error
}
type Display interface {
Peripheral
Drawable
}
// Encoder is a rotary encoder.
type Encoder interface {
Peripheral
// Display linked to the encoder, returns nil if the encoder has no display.
Display() Display
}
type Button interface {
Peripheral
Drawable
// Position on the key matrix.
Position() image.Point
}
type Screen interface {
Peripheral
Drawable
}