Beispiel #1
0
def back(on):
    print "back: %s" % on
    if on:
        motor.back()
    else:
        motor.stop()
Beispiel #2
0
def forward(on):
    print "forward: %s" % on
    if on:
        motor.forward()
    else:
        motor.stop()
Beispiel #3
0
def right(on):
    print "right: %s" % on
    if on:
        motor.right()
    else:
        motor.stop()
Beispiel #4
0
def stop():
    print "stop"
    arm.stop()
    motor.stop()
Beispiel #5
0
def left(on):
    print "left: %s" % on
    if on:
        motor.left()
    else:
        motor.stop()