my application is a wi-fi toy car controller, I just want to add sound effect to simulate car engine sound on phone, I have an integer representing the speed , it changes according to press time on speed pedal button. I want to make something like:
TIA
B4X:
Sub SimulateCarEngineSound(Speed as int)
'car engine roares high or low according to value of 'Speed'
End Sub
TIA