User manual

Automation Protocol Audio Commands (old)
Miranda Technologies Ltd Page 77
Matrix Input Preselect a
Note: This command is largely deprecated.
This command selects which physical input is pre-selected to the matrix
input. The parameters are the matrix input and the pre-select input.
Example:
void SetInputPath(UINT8 byPhysio, UINT8 byPathNo)
{
remote_send("a%c%c", byPathNo+0x20,
byPhysIo+0x20);
}
Set Input Mode b
Note: This command is largely deprecated.
This command sets the input to the matrix to be either mono or stereo and
also sets the input to carry one of the input unmodified, the input replaced by
silence or the input phase inverted. This takes two parameters: the matrix
input and the input mode. When an input is set to stereo the command will
affect both channels. When set to mono it will only affect the indicated
channel. Setting the mode to stereo or mono affects the other channel in the
channel pair.
Example:
void SetInputMode(UINT8 byInPath, UINT8 byMonoBit,
UINT8 byMode)
{
UINT8 byIOMode;
byIOMode = 0x20 + ((byMode << 1) | byMonoBit);
remote_send("b%c%c", byInPath+0x20, byIOMode);
}
Set Input Pan c
Note: This command is largely deprecated.