本文整理汇总了Python中Robot.Robot.moveforward方法的典型用法代码示例。如果您正苦于以下问题:Python Robot.moveforward方法的具体用法?Python Robot.moveforward怎么用?Python Robot.moveforward使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Robot.Robot
的用法示例。
在下文中一共展示了Robot.moveforward方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: Robot
# 需要导入模块: from Robot import Robot [as 别名]
# 或者: from Robot.Robot import moveforward [as 别名]
from Sonar import Sonar
from nxt.motor import PORT_A, PORT_B, PORT_C
from nxt.sensor import PORT_4, PORT_3, PORT_2, PORT_1
print "Creating Robot"
robot = Robot('ICTCLUB1')
robot.extend(Mover(PORT_C, PORT_B))
robot.extend(Light(PORT_3))
robot.extend(Sonar(PORT_1))
###########################################################################
# Start your program here #
###########################################################################
# Program start
# Start moving forward at 10% Power
robot.moveforward(10)
# Get the brightness of the surface
brightness = robot.howbright()
# While we are on a white surface, keep moving
while brightness > 500:
# Print out the brightness
brightness = robot.howbright()
print "Brightness",brightness
# Turn around
robot.turnright(1,50)
###########################################################################
# End of program #