Reputation: 1585
I want to generate sound pulses of 19khz on android for some hardware. can android device generate 19k freq sound? I came across this link
but one person is saying that this method doesn't generate frequency beyond 17k.
Upvotes: 0
Views: 2946
Reputation: 8170
In theory you can generate any frequency lower than sampleRate/2. If your samplerate is 44100 Hz, then you could generate up to 22500 Hz sounds.
I haven't checked the algorithm on the link, but it should be easy to copy-paste on a project and test.
Upvotes: 3