-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmessageConfig.json
More file actions
76 lines (76 loc) · 2.16 KB
/
messageConfig.json
File metadata and controls
76 lines (76 loc) · 2.16 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
{
"keys": [
"priority", "algorithm", "speaker", "language",
"volume", "rate", "text"
],
"priority": {
"defaultValue": 4,
"minimumValue": 1,
"maximumValue": 4,
"defaultValueOnMinimum": 4,
"defaultValueOnMaximum": 4,
"defaultValueOnError": 4,
"minMaxOfWhatProperty": null,
"syntaxKeyForEMIC": null
},
"algorithm": {
"defaultValue": 1,
"minimumValue": 0,
"maximumValue": 1,
"defaultValueOnMinimum": 1,
"defaultValueOnMaximum": 1,
"defaultValueOnError": 1,
"minMaxOfWhatProperty": null,
"syntaxKeyForEMIC": "P"
},
"speaker": {
"defaultValue": 0,
"minimumValue": 0,
"maximumValue": 8,
"defaultValueOnMinimum": 0,
"defaultValueOnMaximum": 0,
"defaultValueOnError": 0,
"minMaxOfWhatProperty": null,
"syntaxKeyForEMIC": "N"
},
"language": {
"defaultValue": 0,
"minimumValue": 0,
"maximumValue": 2,
"defaultValueOnMinimum": 0,
"defaultValueOnMaximum": 0,
"defaultValueOnError": 0,
"minMaxOfWhatProperty": null,
"syntaxKeyForEMIC": "L"
},
"volume": {
"defaultValue": -3,
"minimumValue": -48,
"maximumValue": 10,
"defaultValueOnMinimum": -48,
"defaultValueOnMaximum": 10,
"defaultValueOnError": 0,
"minMaxOfWhatProperty": null,
"syntaxKeyForEMIC": "V"
},
"rate": {
"defaultValue": 200,
"minimumValue": 75,
"maximumValue": 600,
"defaultValueOnMinimum": 75,
"defaultValueOnMaximum": 600,
"defaultValueOnError": 200,
"minMaxOfWhatProperty": null,
"syntaxKeyForEMIC": "W"
},
"text": {
"defaultValue": "Hello World.",
"minimumValue": 0,
"maximumValue": 1000,
"defaultValueOnMinimum": "Hello World.",
"defaultValueOnMaximum": "Sorry, but that message is too long.",
"defaultValueOnError": "Sorry, but there was an error with that message.",
"minMaxOfWhatProperty": "length",
"syntaxKeyForEMIC": "S"
}
}