本文整理汇总了Python中Robot.Robot.goToGobeletLocal方法的典型用法代码示例。如果您正苦于以下问题:Python Robot.goToGobeletLocal方法的具体用法?Python Robot.goToGobeletLocal怎么用?Python Robot.goToGobeletLocal使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Robot.Robot
的用法示例。
在下文中一共展示了Robot.goToGobeletLocal方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: Robot
# 需要导入模块: from Robot import Robot [as 别名]
# 或者: from Robot.Robot import goToGobeletLocal [as 别名]
from Robot import Robot
import time
robot = Robot('/dev/ttyACM0','/dev/ttyACM1','/dev/ttyACM2')
#3 cylindres + gobelet
robot.allerA((700, 950))
robot.goToCylindreLocal((870, 645), False)
robot.allerA((900, 520))
robot.goToCylindreLocal((1100, 230), False)
robot.goToCylindreLocal((1300, 600), False)
robot.allerA((1250, 400))
robot.goToGobeletLocal((1500, 350), False)
#gobelet
robot.allerA((910, 850))
robot.goToGobeletLocal((910, 1170), True)
#poser gobelet + 3 cylindres + balle
robot.allerAangle((600, 1000), 0)
robot.allerA((450, 1000))
#2 cylindres + gobelet
#robot.allerA((450, 450))
#robot.goToGobeletLocal((250, 250), True)
示例2:
# 需要导入模块: from Robot import Robot [as 别名]
# 或者: from Robot.Robot import goToGobeletLocal [as 别名]
robot.allerA((2270, 1580))
robot.goToCylindreLocal((2150, 1800), False)
robot.goToCylindreLocal((2150, 1900), False)
# Gobelet G2 + dépose dans la zone de départ
robot.allerA((2310, 1050))
robot.goToCylindreLocal((2090, 1170), True)
# Gobelet G + Cylindres 164 et P15
robot.allerA(( 2550, 450))
robot.goToGobeletLocal((2750, 250), False)
#1er plot
robot.goToCylindreLocal((2910, 250), False)
#plot 2
robot.goToCylindreLocal((2910, 150), False)
#claps
robot.allerAangle((int(2750),int(230)),900)
robot.com.appelMonteeActionneurGobeletDerriere()
robot.com.appelDescenteClapGauche()
robot.allerAangle((int(2750),int(230)), 1800)
robot.com.appelMonteeClapGauche()
robot.allerAangle((int(2300),int(230)), 1800)
示例3: Robot
# 需要导入模块: from Robot import Robot [as 别名]
# 或者: from Robot.Robot import goToGobeletLocal [as 别名]
from Robot import Robot
from CommunicationSerial import CommunicationSerial as com
import time
robot = Robot('/dev/ttyACM0','/dev/ttyACM1','/dev/ttyACM2')
sens = False
gobelet = True
point = (910, 850)
robot.allerA(point)
#robot.allerAangle(point, 0)
if(gobelet) :
robot.goToGobeletLocal((910, 1170), sens)
else :
robot.goToCylindreLocal((910, 1170), sens)
time.sleep(1)
if(gobelet and sens) :
robot.com.appelDescenteActionneurGobeletDevant()
elif(gobelet and (not sens)) :
robot.com.appelDescenteActionneurGobeletDerriere()
elif((not gobelet) and sens) :
robot.com.appelDescenteActionneurCylindreDevant()
else :
robot.com.appelDescenteActionneurCylindreDerriere()
示例4:
# 需要导入模块: from Robot import Robot [as 别名]
# 或者: from Robot.Robot import goToGobeletLocal [as 别名]
robot.printPosition()
#plot 3
# robot.com.appelMonteeActionneurGobeletDevant()
# robot.allerA((1200, 260))
# robot.com.appelDescenteActionneurGobeletDevant()
robot.goToCylindreLocal((1300, 600), False)
#gobelet
robot.allerA((1250, 400))
robot.goToGobeletLocal((1500, 350), False)
robot.com.appelDescenteActionneurGobeletDevant()
# retour au départ :D
robot.allerAangle((600, 1000), 0)
robot.allerA((250, 1000))