I need to make some beeping type sounds.
I tried doing somthing this.
Dim b1 As Beeper
Dim b2 As Beeper
Dim b3 As Beeper
Dim b4 As Beeper
b1.Initialize(300, 200) 'freq is 200 too low to hear - used as a delay
b2.Initialize(300, 700) 'low note
b3.Initialize(300, 1000) 'med note
b4.Initialize(300, 1200) 'high note
b2.Beep 'low note
b1.Beep 'delay
b3.Beep 'medium note
b1.Beep 'delay
b4.Beep 'high note
b1.Beep 'delay
When run, I only hear one beep and suspect the three notes are being played
simultaneously.
Any ideas ?
Thanks,
VitMan
I tried doing somthing this.
Dim b1 As Beeper
Dim b2 As Beeper
Dim b3 As Beeper
Dim b4 As Beeper
b1.Initialize(300, 200) 'freq is 200 too low to hear - used as a delay
b2.Initialize(300, 700) 'low note
b3.Initialize(300, 1000) 'med note
b4.Initialize(300, 1200) 'high note
b2.Beep 'low note
b1.Beep 'delay
b3.Beep 'medium note
b1.Beep 'delay
b4.Beep 'high note
b1.Beep 'delay
When run, I only hear one beep and suspect the three notes are being played
simultaneously.
Any ideas ?
Thanks,
VitMan