Settings¶
please visit the online manual for updates
settings.user.id
¶
Property for the assigned user. needs to be called with the user.id
API
settings.user.id = user.id(1) // assigns user 1 to the device running the script
settings.time
¶
Global Values for time settings
value name | time |
---|---|
settings.time.0.5 | 0,5 s |
settings.active.time.1 | 1 s |
settings.active.time.2 | 2 s |
settings.active.time.5 | 5 s |
settings.active.time.30 | 30 s |
settings.active.time.60 | 60 s |
settings.active.time.120 | 120 s |
settings.active.time
¶
Property for the active time. The global settings.time
values can be used for this property
settings.cue.timeout
¶
Property for the cue time. The global settings.time
values can be used for this property
settings.tone.level
¶
Property for the tone level.
value name | Represents |
---|---|
tone.level.mute | mute |
tone.level.min.24 | -24 dB |
tone.level.min.18 | -18 dB |
tone.level.min.12 | -12 dB |
tone.level.min.6 | -6 dB |
tone.level.0 | 0 dB |
settings.reply.mode
¶
Property for the reply mode.
value name | Represents |
---|---|
settings.reply.mode.disabled | reply disabled |
settings.reply.mode.active | reply active channels |
settings.reply.mode.last | reply last activated channel |
settings.priority.dim
¶
Property for the priority dim. the global dim.level values can be used.
settings.popup
¶
Property for the popup-mode.
value name | Represents |
---|---|
settings.popup.system | system popups only |
settings.popup.cue | system and cue popups |
settings.popup.cue.direct | system and direct popups |
settings.popup.all | all popups |
settings.isolate
¶
Property for isolate.
value name | Represents |
---|---|
settings.isolate.enabled | enabled |
settings.isolate.disabled | disabled |
settings.alert.tone
¶
Property for the alert tone.
value name | Represents |
---|---|
settings.alert.tone.fast | fast |
settings.alert.tone.slow | slow |
settings.alert.tone.pulse | pulse |
settings.room.id
¶
Property for the assigned room. needs to be called with the room.id
API
settings.room.id = room.id(1) // assigns room 1 to the device running the script
settings.room.dim
¶
Property for the room dim. the global dim.level values can be used.
settings.room.output
¶
Property for the room output.
value name | Represents |
---|---|
settings.room.output.both | both outputs are used for room dim |
settings.room.output.1 | output 1 is used for room dim (headset for MCX) |
settings.room.output.2 | output 2 is used for room dim (speaker for MCX) |
settings.room.output.headset | headset output is used for room dim |
settings.room.output.speaker | speaker output is used for room dim |
settings.identify
¶
Property for identify, if set to on will flash all LED's of the device, if set off will stop the identify flash.
can also be read to trigger an event
value name | Represents |
---|---|
settings.identify.off | identify is off |
settings.identify.on | identify is on |
// shorten the identify from 10 to 1 second
event settings.identify
if settings.identify == settings.identify.on
timer[1] = 1000
end
end
event timer[1]
settings.identify = settings.identify.off
end