Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/pynxc/tutorial_samples/8_OnSync.py
blob: 20ac0d965fdb835971e5f695710ed3f5665550f4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
def main():
    PlayTone(5000,30)
    OnFwdSync(OUT_AC,50,0)
    Wait(1000)
    PlayTone(5000,30)
    OnFwdSync(OUT_AC,50,20)
    Wait(1000)
    PlayTone(5000,30)
    OnFwdSync(OUT_AC,50,-40)
    Wait(1000)
    PlayTone(5000,30)
    OnRevSync(OUT_AC,50,90)
    Wait(1000)
    Off(OUT_AC)