HTML

paramaterstanner.py

Nov 18th, 2016
141
0
Never
1
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.31 KB | None | 0 0
  1. from finch import Finch
  2. from time import sleep
  3. xfinch=Finch()
  4.  
  5. def yoyo():
  6.     xfinch.wheels(1,1)
  7.     sleep(1)
  8.     xfinch.wheels(-1,-1)
  9.     sleep(1)
  10.  
  11. def yoyo1():
  12.     xfinch.wheels(-1,-1)
  13.     sleep(1)
  14.     xfinch.wheels(1,1)
  15.     sleep(1)
  16.  
  17. def circle(speed):
  18.     xfinch.wheels(speed,speed/2)
  19.     sleep(3)
Advertisement
Comments
  • User was banned
Add Comment
Please, Sign In to add comment