Android Question need help in beep !

Devv

Active Member
Licensed User
Longtime User
hi
i'm new here
im trying the beep in audio lib

i had got it to work but i could not know what is the range of the beep time and frequency
they only mentioned the type (int) but they had not mention the range in the documentation
any help?
 

marab

Member
Licensed User
Longtime User
I used it for beeping maybe it be useful for you:
B4X:
        Dim b As Beeper
b.Initialize(300, 500) '300 milliseconds, 500 hz
b.Beep
 
Upvote 0

Devv

Active Member
Licensed User
Longtime User
I used it for beeping maybe it be useful for you:
B4X:
        Dim b As Beeper
b.Initialize(300, 500) '300 milliseconds, 500 hz
b.Beep


my problem is not beeping i just want to know the limit of
(300, 500) where did u got these from ? what is the max and min of them ?
 
Upvote 0

Erel

B4X founder
Staff member
Licensed User
Longtime User
Upvote 0
Top