예제 #1
0
def right(on):
    print "right: %s" % on
    if on:
        car.right()
    else:
        car.straight()
예제 #2
0
파일: server.py 프로젝트: 3m00ns/SSRascar
def right(on):
    print "right: %s" % on
    if on:
        car.right()
    else:
        car.straight()
예제 #3
0
def left(on):
    print "left: %s" % on
    if on:
        car.left()
    else:
        car.straight()
예제 #4
0
파일: server.py 프로젝트: 3m00ns/SSRascar
def left(on):
    print "left: %s" % on
    if on:
        car.left()
    else:
        car.straight()