Appendix I.
Estimated reading time: 2 minutes
settings.json is written in JSON format. The formats are as follows:
- title ... <string> (optional) Title
- subtitle ... <string> (optional) Sub-title
- autoEndAlarm ... <boolean> (optional) Automatic end alarm based on the schedule. Enabled when “true”.
- autoPowerOff ... <number> (optional) Automatic power OFF function. Unit is (minutes). Function is disabled by “-1”.
- clock ... <boolean> (optional) Home screen clock display flag. The clock is displayed when this flag is “true”.
- inputs
- hdmi1
- label ... <string> (optional) Text that is displayed at the No.1 port of the external input menu
- hdmi2
- label ... <string> (optional) Text that is displayed at the No.2 port of the external input menu
- hdmi3
- label ... <string> (optional) Text that is displayed at the No.3 port of the external input menu
- hdmi4
- label ... <string> (optional) Text that is displayed at the No.4 port of the external input menu
- hdmi1
- webFrame
- enabled ... <boolean> (optional) Display of WebFrame. “true”: display, “false: hide
- size ... <string> (optional) WebFrame display position. This is mandatory when “enabled” is “true”. “half” or “full”.
- url ... <string> (optional) URL that is displayed in WebFrame. This is mandatory when “enabled” is “true”.
- helpUrl ... <string> (optional) External collaboration URL of Help screen. If this is not specified or is left blank, the standard Help screen is displayed.
- serverConnection ... <boolean> (optional) The server connection is enabled when this flag is “true”. The default is “false”.
- serverUrl ... <string> (optional) BM1 Server URL
- canvasColor ... <string> (optional) The annotation mode canvas color. The value is “white” or “black”. The default is “white”.
- savingAnnotationToUsbMemory ... <boolean> (optional) Sets if the button to save drawing on the annotation to USB storage device is displayed or not displayed. The default is “false”.
- pincode
- enabled ... <boolean> (optional) Enable flag for setting protection function using a PIN code. This function is enabled when this flag is “true”. The default is “false”.
- code ... <string> (optional) PIN code. This is mandatory when “enabled” is “true”. Specify a 4-digit number. The default is ‘0000’.
- version ... <number> (mandatory) Version of setting data. Specify “1” at all times.
Ex)
{
"title": "101",
"subtitle": "Meeting Room",
"autoPowerOff": 30,
"clock": true,
"inputs": {
"hdmi1": {
"label": "HDMI 1"
},
"hdmi2": {
"label": "HDMI 2"
},
"hdmi3": {
"label": "VC"
},
"hdmi4": {
"label": "VC"
}
},
"helpUrl": "http://help.example.com",
"webFrame": {
"enabled": false,
},
"pincode": {
"enabled": true,
"code": "5577"
},
"version": 1
}
{
"serverConnection": true,
"serverUrl": "https://example.com"
"version": 1
}