-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDWS_Config.js
44 lines (37 loc) · 919 Bytes
/
DWS_Config.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
import xapi from 'xapi';
// Array of codecs, their IP Addresses and serial numbers
const codecs = [
{
role: 'Primary',
ip: '<Codec IP Address>',
serial: '<Codec Serial>'
},
{
role: 'Secondary',
ip: '<Codec IP Address>',
serial: '<Codec Serial>'
}
];
// Credentails used for inter-codec communcation
const credentials = {
username: 'divisibleWorkspace',
password: '<Your Perferred Divisible Workspace Solution Password>'
}
// Customise the combine button and panel text
const combinePanel = {
button: {
name: 'Combine Room',
icon: 'Sliders',
color: ''
},
panel: {
title: 'Tap the toggle to combine or divide'
}
};
// Customise the lockPanel text
const lockPanelText = {
Title: 'Combined Mode',
Text: 'This codec is in combined mode',
'Option.1': 'Please use main Touch Panel'
};
export default { codecs, credentials, combinePanel, lockPanelText }