Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/pynxc/tutorial_samples/6_subs.py
blob: b35313c68f792c23ba5ba12dcc180c92d32402ff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
def sub_turn_around(pwr):
    OnRev(OUT_C, pwr); Wait(900)
    OnFwd(OUT_AC, pwr)

def main():
    OnFwd(OUT_AC, 75)
    Wait(1000)
    sub_turn_around(75)
    Wait(2000)
    sub_turn_around(75)
    Wait(1000)
    sub_turn_around(75)
    Off(OUT_AC)