-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpresets.js
72 lines (71 loc) · 1.27 KB
/
presets.js
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
const Styles = require('./styles')
module.exports = async function (self) {
self.setPresetDefinitions({
Back : {
type: 'button',
category: 'CueEther',
name: 'Send Back Cue',
style: Styles.FullBack,
steps: [{
down: [{
actionId: 'send_cue_action',
options: {
cueType: 'back',
channel: ['1', '2', '3', '4']
}
}],
up: []
}],
feedbacks: [{
feedbackId: 'ack_cue_feedback',
options: {
cueType: 'back'
}
}]
},
Blackout : {
type: 'button',
category: 'CueEther',
name: 'Send Blackout Cue',
style: Styles.FullBlackout,
steps: [{
down: [{
actionId: 'send_cue_action',
options: {
cueType: 'black',
channel: ['1', '2', '3', '4']
}
}],
up: []
}],
feedbacks: [{
feedbackId: 'ack_cue_feedback',
options: {
cueType: 'black'
}
}]
},
Next : {
type: 'button',
category: 'CueEther',
name: 'Send Next Cue',
style: Styles.FullNext,
steps: [{
down: [{
actionId: 'send_cue_action',
options: {
cueType: 'next',
channel: ['1', '2', '3', '4']
}
}],
up: []
}],
feedbacks: [{
feedbackId: 'ack_cue_feedback',
options: {
cueType: 'next'
}
}]
},
});
}