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
|
[
{
"type": "section",
"items": [
{
"type": "heading",
"defaultValue": "Beats"
},
{
"type": "slider",
"messageKey": "bpm",
"defaultValue": 90,
"label": "Per Minute",
"min": 1,
"max": 200
},
{
"type": "slider",
"messageKey": "beats",
"defaultValue": 4,
"label": "Per Bar",
"min": 1,
"max": 16
}
]
},
{
"type": "section",
"items": [
{
"type": "heading",
"defaultValue": "Settings"
},
{
"type": "slider",
"messageKey": "volume",
"label": "Volume",
"defaultValue": 50,
"min": 1,
"max": 100,
"capabilities": [
"PLATFORM_EMERY"
]
},
{
"type": "slider",
"messageKey": "volume",
"label": "Volume",
"defaultValue": 100,
"min": 1,
"max": 100,
"capabilities": [
"PLATFORM_FLINT"
]
},
{
"type": "checkboxgroup",
"messageKey": "beat_indicators",
"label": "Beat indicators",
"defaultValue": [true, true, true],
"options": [
"Flashing",
"Vibration",
"Beep"
]
}
]
},
{
"type": "submit",
"defaultValue": "Save"
}
]
|