Police Siren

coolmandan1

New Member
Hi,

I was wonderinf if anyone had made a 'police siren' sound using the Tune Wizard for PICAXE 08M. If anyone can help or suggest that i do something else it would be appreciated.

Thanks,
Coolmandan1
 

craig008

New Member
will the sound comend not do the job, i used that for my brothers trafic lights a few years back heres a snipet of code from the programme - can belive i still have this stored y hard drive!! just ignore the subs that arnt there or what ever
sounds:
let b2 = 110
let b3 = b3 + 1
sound 2,(110,20)
pause 35
sound 2,(110,20)
pause 35
sound 2,(110,20)
pause 35

sound_1:
sound 2,(b2,3)
let b2 = b2 + 1
if b2 < 125 then sound_1
if b3 = 3 then traffics
pause 100
goto sounds
________
Ultimate fighter
 
Last edited:
Top