Biamp LTR User Manual
Page 34
Audia-Manual-LTR
Below are some examples of possible string usage:
1. Basic Dialing with timeout to send, talk, and then end call locally with end command
SET 0 VOIPHOOKSTATE 104 1 0 // go off hook
DIAL 1 VOIPPHONENUM 104 1 1 // dial the digit 1
DIAL 1 VOIPPHONENUM 104 1 2 // dial the digit 2
DIAL 1 VOIPPHONENUM 104 1 3 // dial the digit 3
// … 3 seconds pass (from last DIAL) and
request is sent
// … Talking...
END 1 VOIPCALL 104 1
2. Basic Dialing with explicit send and end call locally with end command
DIAL 1 VOIPPHONENUM 104 1 1 // go off hook and dial the digit 1
DIAL 1 VOIPPHONENUM 104 1 2 // dial the digit 2
DIAL 1 VOIPPHONENUM 104 1 3 // dial the digit 3
DIAL 1 VOIPPHONENUM 104 1 # // send the dial request to the VoIP Proxy
// … Talking...
END 1 VOIPCALL 104 1
3. Incoming call & answer and end locally
// incoming call (ringing…)
ANS 1 VOIPCALL 104 1 // answer call
// … Talking...
14