Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/pynxc/tutorial_samples/12_wait.py
blob: 87b9b6f64166db415a95db524538061b782969b4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
def main():

    SetSensor(IN_1,SENSOR_TOUCH)
    t3 = CurrentTick()
    OnFwd(OUT_AC, 75)
    
    while (SENSOR_1 != 1) and ((CurrentTick()-t3) <= 1000):
        pass
    
    Off(OUT_AC);