How to get feedback string from Clearone Duet module?
leoncao
Posts: 5
I used Clearone Duet module for control 1 converge pro 880T. Every thing is ok. But, I want to get feedback string
from Duet moudule.
If a call came in, I use
Send_command vdvClearone,'?DIALERSTASTUS'
and use
DATA_EVENT[vdvClearone]
{
STRING:
{
IF (LENGTHSTRING(DATA.TEXT)>0)
{
SEND_COMMAND vdvTP,"'!T',1,'DATA.TEXT'"
}
}
But, I can not get any ring status string from Duet module.
Thanks for help me!
from Duet moudule.
If a call came in, I use
Send_command vdvClearone,'?DIALERSTASTUS'
and use
DATA_EVENT[vdvClearone]
{
STRING:
{
IF (LENGTHSTRING(DATA.TEXT)>0)
{
SEND_COMMAND vdvTP,"'!T',1,'DATA.TEXT'"
}
}
But, I can not get any ring status string from Duet module.
Thanks for help me!
0
Comments
edit:
ok, you can do this:
get yourself a telnet client on your computer. WinXP has one built in and it works fine.
telnet into your master
watch your notifications in Studio (diagnostics "enable netlinx device notifications")
enter the command into your telnet client:
send_command 41001:1:0,'?DIALERSTATUS'
and you will see the commands to and fro to your comm module. If you want to see what strings are actually being sent back and forth to the ClearOne device:
send_command 41001:1:0,'PASSBACK-1'
will probably turn on the device notifications and enable you to parse those strings, if you desire.