How To | Setting Mute on NM-T1 via script
Learn how to effectively mute the NM-T1 device using a simple script for enhanced control and customization.
Procedure
Use the following for reading and writing Mute state on NM-T1 via a Lua script.
Drag the “Mic In” component of the NM-T1 into the design. Make sure Script Access set to “Script” or "All". Make a note of the the Code Name.
.png)
In the script, use Component.New() to target the "Mic In" component using the name from its Code Name property noted proviously.
Within that component, the control to target in a script for the NM-T1 mute toggle is beam_mute_logic. This control mutes/unmutes all the beams and synchronizes with the Mic In and Control component mute buttons.
The example below prints the current mute state of an NM-T1 with a Code Name set to "Mic_In" to the script debug window.
comp = Component.New("Mic_In")
print(comp["beam_mute_logic"].Boolean)