-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathnumeric.json
executable file
·46 lines (46 loc) · 909 Bytes
/
numeric.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
{
"title" : "Numeric",
"description" : "A numeric keypad",
"cols" : 4,
"rows": 4,
"normal_1": [
["7", "7", "7", 1],
["8", "8", "8", 1],
["9", "9", "9", 1],
["\u232b", null, "backspace", 1]],
"normal_2": [
["4", "4", "4", 1],
["5", "5", "5", 1],
["6", "6", "6", 1],
["/", "/", "/", 1]],
"normal_3": [
["1", "1", "1", 1],
["2", "2", "2", 1],
["3", "3", "3", 1],
["\u23ce", null, "enter", 1]],
"normal_4": [
["-", "-", "-", 1],
["0", "0", "0", 1],
[".", ".", ".", 1],
["\u2a2f", null, "escape", 1]],
"shift_1": [
["7", "7", "7", 1],
["8", "8", "8", 1],
["9", "9", "9", 1],
["\u232b", null, "backspace", 1]],
"shift_2": [
["4", "4", "4", 1],
["5", "5", "5", 1],
["6", "6", "6", 1],
["/", "/", "/", 1]],
"shift_3": [
["1", "1", "1", 1],
["2", "2", "2", 1],
["3", "3", "3", 1],
["\u23ce", null, "enter", 1]],
"shift_4": [
["-", "-", "-", 1],
["0", "0", "0", 1],
[".", ".", ".", 1],
["\u2a2f", null, "escape", 1]]
}