Advertisement
darthgustav

dock.lua

Feb 12th, 2020
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. -- Dock
  2. local robot = require("robot")
  3.  
  4. -- Facing Dock
  5. robot.turnLeft()
  6.  
  7. --Move to Dock
  8. for i = 1,5,1
  9. do
  10. robot.forward()
  11. end
  12.  
  13. -- Return Facing to PYMTEK Lab
  14. robot.turnRight()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement