tags:

views:

100

answers:

2

hi any of them know how to implement dtmf in iphone application. thanks in advance.

+1  A: 

You couldn't just do a Google search? The first result for "iPhone DTMF" returns this Google Code project called iPhreak which should include what you're looking for.

Martin Gordon
yes, i got that, but it is runnable state, help me
Jeevanantham
A: 

Generating DTMF is easy - you just need to generate two sinusoids at the appropriate frequencies.

Decoding DTMF is a little harder, but it can be implemented using a pair of Goertzel filters.

Paul R