-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathdevices.lua
More file actions
82 lines (77 loc) · 1.84 KB
/
devices.lua
File metadata and controls
82 lines (77 loc) · 1.84 KB
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
hid_device {
name = 'SteelSeries Apex 5',
screen_size = {
width = 128,
height = 40,
},
hid_settings = {
vendor_id = '0x1038',
product_id = '0x161C',
interface = '0x01',
},
transform = transform_data({ prepend = {0x61}, append = {0x00} }),
memory_layout = MemoryLayout.SteelSeries,
}
hid_device {
name = 'SteelSeries Apex 7 TKL',
screen_size = {
width = 128,
height = 40,
},
hid_settings = {
vendor_id = '0x1038',
product_id = '0x1618',
interface = '0x01',
},
transform = transform_data({ prepend = {0x61}, append = {0x00} }),
memory_layout = MemoryLayout.SteelSeries,
}
hid_device {
name = 'SteelSeries Apex Pro',
screen_size = {
width = 128,
height = 40,
},
hid_settings = {
vendor_id = '0x1038',
product_id = '0x1610',
interface = '0x01',
},
transform = transform_data({ prepend = {0x61}, append = {0x00} }),
memory_layout = MemoryLayout.SteelSeries,
}
hid_device {
name = 'SteelSeries Apex Pro TKL Wireless Gen 3 (2.4G)',
screen_size = {
width = 128,
height = 40,
},
hid_settings = {
vendor_id = '0x1038',
product_id = '0x1644',
interface = '0x03',
},
transform = transform_data({ prepend = {0x4a} }),
memory_layout = MemoryLayout.SteelSeries2,
}
hid_device {
name = 'SteelSeries Apex Pro TKL Wireless Gen 3',
screen_size = {
width = 128,
height = 40,
},
hid_settings = {
vendor_id = '0x1038',
product_id = '0x1646',
interface = '0x03',
},
transform = transform_data({ prepend = {0x0a} }),
memory_layout = MemoryLayout.SteelSeries2,
}
emulator {
name = 'Emulator',
screen_size = {
width = 128,
height = 40,
},
}