cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
609
Views
0
Helpful
3
Replies

TC software support for DTMF letter values

Bob Fitzgerald
Level 4
Level 4

Hi!

Got a question that I can't find a documented answer for.  On endpoints running any version of TC software, is there any way to get the endpoint to generate the DTMF tones for A, B, C, or D? 

My gut feeling is no, if only because the graphical DTMF pad does not have those buttons (only 0-9, *, #).  The reason for asking is a customer is trying to call into an AT&T bridge which has one of those letters in the PIN.

Thanks!

1 Accepted Solution

Accepted Solutions

Wayne DeNardi
VIP Alumni
VIP Alumni

You can do it via the command line:

xcommand DTMFSend DTMFString: A

or, you can send the whole PIN at once, ie if the PIN is 1A2B3C4D5 you can:

xcommand DTMFSend DMTFString: 1A2B3C4D5

Wayne
--
Please remember to rate responses and to mark your question as answered if appropriate.

Wayne

Please remember to mark helpful responses and to set your question as answered if appropriate.

View solution in original post

3 Replies 3

Wayne DeNardi
VIP Alumni
VIP Alumni

You can do it via the command line:

xcommand DTMFSend DTMFString: A

or, you can send the whole PIN at once, ie if the PIN is 1A2B3C4D5 you can:

xcommand DTMFSend DMTFString: 1A2B3C4D5

Wayne
--
Please remember to rate responses and to mark your question as answered if appropriate.

Wayne

Please remember to mark helpful responses and to set your question as answered if appropriate.

Hi Wayne,

Thanks for the answer.  After reading it I realized I hadn't actually tried sending a letter DTMF.  The perils of internet research I suppose.  ;-)  Looking in the logs of my endpoint I saw that I was receiving the letter DTMF from the endpoint I was connected to.

2015-02-19T08:13:50.499-08:00 ppc appl[2785]: 1424.41 H323Call I: h323_call_handler::handleH323DtmfInd(p=2, s=1): Incoming DTMF
2015-02-19T08:13:50.501-08:00 ppc appl[2785]: 1424.42 MainEvents I: DTMFReceived(p=2) 'A'

Thanks again!

As a follow up, here are some other hopefully helpful tidbits;

- The letter (A, B, C or D) must be capitalized in the command string

- The codec will not send anything outside of the scope of DTMF (i.e. E-Z)

 

Thanks!