Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/pynxc/tutorial_samples/8_OnReg.py
blob: 864fa83686fbc7af0f082236b3a07032ef49a2dd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
def main():

    OnFwdReg(OUT_AC,50,OUT_REGMODE_IDLE)
    Wait(2000)
    Off(OUT_AC)
    PlayTone(4000,50)
    Wait(1000)
    ResetAllTachoCounts(OUT_AC)
    OnFwdReg(OUT_AC,50,OUT_REGMODE_SPEED)
    Wait(2000)
    Off(OUT_AC)
    PlayTone(4000,50)
    Wait(1000)
    OnFwdReg(OUT_AC,50,OUT_REGMODE_SYNC)
    Wait(2000)
    Off(OUT_AC)