Created
November 24, 2009 16:20
-
-
Save kennethreitz/241986 to your computer and use it in GitHub Desktop.
Pacman Simulation for iRoomba (years ago, don't worry)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from create import * | |
from time import * | |
import create | |
robot = create.Create(3) | |
def wait(): | |
sleep(.5) | |
def die(): | |
robot.turn(1024,180) | |
##def song(): | |
## wait() | |
def main(): | |
y = 0 | |
## song() | |
while y != 2: | |
robot.go(1000) | |
right = robot.sensors([101]) | |
left = robot.sensors([102]) | |
left_bumper = left[101] | |
right_bumper = right[102] | |
if left_bumper == 1 and right_bumper == 1: | |
robot.stop() | |
wait() | |
robot.turn(180,180) | |
wait() | |
y = y+1 | |
elif left_bumper == 1: | |
robot.stop () | |
wait() | |
robot.turn(-90,180) | |
wait() | |
y = y+1 | |
elif right_bumper == 1: | |
robot.stop () | |
wait() | |
robot.turn(90.180) | |
wait() | |
y = y+1 | |
wait() | |
die() | |
main() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment