Home AMX User Forum AMXForums Archive Threads AMX Applications and Solutions
Options

Vortex 2201 Sample Code

Hi,

Can anyone forward me the sample code for Vortex 2201.

Comments

  • Options
    dcperedcpere Posts: 7
    I'm assuming you are talking about the Polycom Vortex line.

    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
  • Options
    dcperedcpere Posts: 7
    Sorry but i forgot to mention, www.polycom.com has documentation available for download and you are not even required to login or be a member. Check under the support/audio conferencing section
  • Options
    Polycom Vortex 2201

    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?
  • Options
    Here is the line to cause the 2201 to dial the phone number.

    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.
  • Options
    dcperedcpere Posts: 7
    If you are not going to save presets then the commands are as follows to dial just like a regular telephone:

    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.
Sign In or Register to comment.