Hi
Could you please provide the commands for referencing and modifying parameters within Subsystem using TCP/IP in C# ?
From my research, I understand that to reference the value of ParamDCSourceV2 within Subsystem, the ParamGet command needs to be used.
Considering this, I attempted to send the following command to retrieve the value of Param1 within SubSys1,
where the value is set to 5, based on the configuration provided in the attached file:
Sent command: "get_value,ParamGet1.varPtr\n"
The received response was as follows:
Received response: "success,36873,int,172325712\n"
Please guide me on the correct command to retrieve the value of Param1 within SubSys1, set to 5.
Additionally, could you provide the command and AWE configuration for setting the value of Param1 within SubSys1 to 1 ?
4:16pm
Hi Koike,
The command you are looking for is indeed get_value. For your example, referencing the Param1 value would use the expression SubSys1____Param1.value. The "____" is used to navigate down into another subsystem level. https://documentation.dspconcepts.com/awe-designer/latest-version/audio-...(8.D.2.2)AudioWeaverTuningCommandSyntax-get_value
There is a similar set_value command which you can use to retrieve the setting: https://documentation.dspconcepts.com/awe-designer/latest-version/audio-...(8.D.2.2)AudioWeaverTuningCommandSyntax-get_value
Thanks,
Michael
5:44pm
Hi Michael,
I was able to resolve it on my own before receiving a response.
I tried using "____" in the log file "aweserver.log", which logs interactions with the server, and it worked.
Thank you for your response.