Android Question SIP SendDtmf(INT) description

V.Wolpers

Member
Can someone explain how to use SendDtmf(Int)?

I have added the DTMF button to the program from this tutorial.

Everything works as described in the tutorial. Only the DTMF tone is not generated.

Do I have to enter further parameters? e.g. sound duration, volume?

I cannot find a description of how SendDtmf is to be used and what requirements are necessary for it.

Where can I find a description or what is wrong in my code?

B4X:
Private Sub btnDTMF_Click
    If CurrentCall.IsInitialized Then
        CurrentCall.SendDtmf(10)
    End If
End Sub

Complete program code as an attachment.

Thank you for any advice.
 

Attachments

  • Sip_DTMF.zip
    8.2 KB · Views: 151

Erel

B4X founder
Staff member
Licensed User
Longtime User
1629019764964.png


Worth trying with a different SIP server.
 
Upvote 0
Top