Guest User

Untitled

a guest
Feb 18th, 2019
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. if (distance() <= 100):
  2. zone = 1
  3. if (distance() >= 2000):
  4. zone = 1
  5. elif (100 < distance() < 2000):
  6. zone = 2
  7.  
  8. if (zone == 1):
  9. Popen(['/usr/bin/omxplayer', '--display','0', movie1])
  10. time.sleep(6)
  11.  
  12. if (zone == 2):
  13. Popen(['/usr/bin/omxplayer', '--display','0', movie2])
  14. time.sleep(6)
Add Comment
Please, Sign In to add comment