Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/pynxc/tutorial_samples/6_inline.py
blob: 7465a6d58f6881d5f7d49080ae5187d3d841476c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
def inline_turn_around():
    OnRev(OUT_C, 75) 
    Wait(900)
    OnFwd(OUT_AC, 75)

def main():

    OnFwd(OUT_AC, 75)
    Wait(1000)
    inline_turn_around()
    Wait(2000)
    inline_turn_around()
    Wait(1000)
    inline_turn_around()
    Off(OUT_AC)