Vortex 2201 Sample Code
[Deleted User]
Posts: 0
Hi,
Can anyone forward me the sample code for Vortex 2201.
Can anyone forward me the sample code for Vortex 2201.
0
Comments
SEND_STRING dvPOLYB,"'B01FLASH',13" will execute a flash / call waiting switch
SEND_STRING dvPOLYB,"'B01PHONE1',13" will seize the line
SEND_STRING dvPOLYB,"'B01PHONE0',13" will let go of the line
Note: the B01 is the device type and address of the Polycom unit
Thank you.
Just one question how can I design the View Point (1 way only) to allow user to dail the number and get the vortex 2201 to dail out? Do you had a sample to show me?
SEND_STRING dvVORTEX,"'T00DIAL ',CAUDIOPHONENUMBER,13"
In the example above the T is the device type and 00 is the device ID.
DIAL is the device command.
The variable CAUDIOPHONENUMBER is a string containing the telephone number to dial.
Here is a list of the various device types.
Device - Device Type
EF200 - A
EF1210 - C
EF2280 - F
EF2241 - B
EF2211 - S
EF2210 - Q
EF2201 - T
Also, AMX has a module available for the EF2201.
1. SEND_STRING dvPOLYB,"'B01PHONE1',13" - will seize the tel line
* you will here dial tone *
2. SEND_STRING dvPOLYB,"'B01DIALx',13" - will dial the number x
- where x is the number
eg. SEND_STRING dvPOLYB,"'B01DIAL9',13" - will dial 9
3. Repeat step 2 for remaining numbers to be dialed
4. When conversation is done
SEND_STRING dvPOLYB,"'B01PHONE0',13" - will let go of tel line
I did this method with a 1-way viewpoint. The customer did not care to save presets because he did not dial the same number very often.
Smilehttp://www.amxforums.com/images/icons/icon7.gif
Smile