Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/pynxc/tutorial_samples/7_music.py
blob: 824647df52f03e33577b5dbefc4307c2bfd9fd0f (plain)
1
2
3
4
5
6
7
8
DEFINE VOL=3

def main():
    PlayToneEx(262,400,VOL,False);  Wait(500)
    PlayToneEx(294,400,VOL,False);  Wait(500)
    PlayToneEx(330,400,VOL,False);  Wait(500)
    PlayToneEx(294,400,VOL,False);  Wait(500)
    PlayToneEx(262,1600,VOL,False); Wait(2000)