C++ :: Drumpad - Where To Get Sounds
Jun 25, 2013I am making a drumpad program so where to get the sounds.
View 5 RepliesI am making a drumpad program so where to get the sounds.
View 5 RepliesI have used beep() and sound() functions. But both of them generate sounds of only fixed frequency. Is there any way i can generate a sound of mixed waveforms. I am currently using this code, but it isnt reliable at all times and for all frequencies,
for(i=0;i<500;i++)
{
sound(500);
delay(2);
sound(250);
delay(2);
}
I'm thinking of making a horror text-based game, which would use sounds, if you could also tell me of an API to display images in an alternate window that would be nice.
View 6 Replies View Related