-
Notifications
You must be signed in to change notification settings - Fork 4
/
vial.json
107 lines (107 loc) · 2.42 KB
/
vial.json
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "HID Keyboard",
"vendorId": "0x4C4B",
"productId": "0x4643",
"lighting": "none",
"matrix": {
"rows": 4,
"cols": 3
},
{% if microcontroller_family == "nrf" -%}
"customKeycodes": [
{
"name": "BT0",
"title": "Bluetooth Channel 0",
"shortName": "BT0"
},
{
"name": "BT1",
"title": "Bluetooth Channel 1",
"shortName": "BT1"
},
{
"name": "BT2",
"title": "Bluetooth Channel 2",
"shortName": "BT2"
},
{
"name": "BT3",
"title": "Bluetooth Channel 3",
"shortName": "BT3"
},
{
"name": "BT4",
"title": "Bluetooth Channel 4",
"shortName": "BT4"
},
{
"name": "BT5",
"title": "Bluetooth Channel 5",
"shortName": "BT5"
},
{
"name": "BT6",
"title": "Bluetooth Channel 6",
"shortName": "BT6"
},
{
"name": "BT7",
"title": "Bluetooth Channel 7",
"shortName": "BT7"
},
{
"name": "NEXT_BT",
"title": "Switch to the next Bluetooth channel",
"shortName": "Next\nBT"
},
{
"name": "PREV_BT",
"title": "Switch to the previous Bluetooth channel",
"shortName": "Prev\nBT"
},
{
"name": "CLR_BT",
"title": "Clear bond info for current channel",
"shortName": "Clear\nBT"
},
{
"name": "SWITCH",
"title": "Switch default output mode between USB/BLE",
"shortName": "Switch\nOutput"
}
],
{% endif -%}
"layouts": {
"labels": [
[
"label",
"label2"
]
],
"keymap": [
[
"0,0",
"0,1",
"0,2"
],
[
"1,0",
"1,1",
"1,2"
],
[
"2,0",
"2,1",
"2,2"
],
[
{
"y": -2,
"x": 4
},
"3,0",
"3,2"
]
]
}
}