Hello.
I'm following mmWave Studio userguide to control mmWave studio through an external software. Section 23 "Controlling mmWaveStudio from Matlab" gives sample code on how to control it with Matlab. My application requires to run with Python. So I'm following this sample code given in the user manual.
I'm able to follow it till line 42 but when I try executing line 43 in Python terminal, I get the error
RtttNetClientAPI.RtttNetClient.SendCommand('WriteToLog("Matlab\n", "green")')
Traceback (most recent call last):
File "<input>", line 1, in <module>
TypeError: No method matches given arguments for SendCommand: (<class 'str'>)
I tried sending raw, string, bytes but nothing worked. Do you have any solution for this?
