Advertisement
Guest User

Untitled

a guest
Jan 20th, 2017
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. task main()
  2. {
  3. motor[motorC] = 100;
  4. motor[motorB] = 100;
  5. wait1Msec(1500);
  6.  
  7. motor[motorC] = -100;
  8. motor[motorB] = -100;
  9. wait1Msec(1500);
  10.  
  11. motor[motorC] = 100;
  12. motor[motorB] = 100;
  13. wait1Msec(2500);
  14.  
  15. motor[motorC] = -100;
  16. motor[motorB] = -100;
  17. wait1Msec(1500);
  18.  
  19. motor[motorC] = 100;
  20. motor[motorB] = 100;
  21. wait1Msec(3000);
  22.  
  23. motor[motorC] = -100;
  24. motor[motorB] = -100;
  25. wait1Msec(2500);
  26.  
  27. motor[motorC] = 100;
  28. motor[motorB] = 100;
  29. wait1Msec(3800);
  30.  
  31. motor[motorC] = -100;
  32. motor[motorB] = -100;
  33. wait1Msec(3500);
  34.  
  35. motor[motorC] = 100;
  36. motor[motorB] = 100;
  37. wait1Msec(5200);
  38.  
  39. motor[motorC] = -100;
  40. motor[motorB] = -100;
  41. wait1Msec(5000);
  42.  
  43.  
  44. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement