DTMF Echo Test: Difference between revisions
From KlavoWiki
Jump to navigationJump to search
New page: Just like an Echo Test the DTMF Echo Test will respond with the key that you have pressed. The dial plan below is based on Festival. If Festival is not installed the Festival lin... |
No edit summary |
||
(One intermediate revision by the same user not shown) | |||
Line 1: | Line 1: | ||
Just like an [[Echo Test]] the DTMF Echo Test will respond with the key that you have pressed | Just like an [[Echo Test]] the DTMF Echo Test will respond with the key that you have pressed. | ||
<pre> | <pre> | ||
;DTMF Test | ;DTMF Test | ||
exten => 13,1,Wait(1) | exten => 13,1,Wait(1) | ||
exten => 13,n,Playback(beep) | exten => 13,n,Playback(beep) | ||
exten => 13,n,Read(digito | exten => 13,n,Read(digito,,1) | ||
exten => 13,n,SayDigits(${digito}) | exten => 13,n,SayDigits(${digito}) | ||
exten => 13,n,GoTo(13, | exten => 13,n,GoTo(13,2) | ||
exten => 13,n,HangUp | exten => 13,n,HangUp | ||
</pre> | </pre> | ||
[[Category : Asterisk]] | [[Category : Asterisk]] |
Latest revision as of 05:21, 28 September 2014
Just like an Echo Test the DTMF Echo Test will respond with the key that you have pressed.
;DTMF Test exten => 13,1,Wait(1) exten => 13,n,Playback(beep) exten => 13,n,Read(digito,,1) exten => 13,n,SayDigits(${digito}) exten => 13,n,GoTo(13,2) exten => 13,n,HangUp