本文整理汇总了Python中Robot.Robot.goToCylindreLocal方法的典型用法代码示例。如果您正苦于以下问题:Python Robot.goToCylindreLocal方法的具体用法?Python Robot.goToCylindreLocal怎么用?Python Robot.goToCylindreLocal使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Robot.Robot
的用法示例。
在下文中一共展示了Robot.goToCylindreLocal方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: Robot
# 需要导入模块: from Robot import Robot [as 别名]
# 或者: from Robot.Robot import goToCylindreLocal [as 别名]
# -*- coding: utf-8 -*-
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))
示例2: Robot
# 需要导入模块: from Robot import Robot [as 别名]
# 或者: from Robot.Robot import goToCylindreLocal [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()
robot.allerA(point)
robot.allerAangle((600, 1000), 0)
示例3: Robot
# 需要导入模块: from Robot import Robot [as 别名]
# 或者: from Robot.Robot import goToCylindreLocal [as 别名]
# -*- coding: utf-8 -*-
from Robot import Robot
import time
robot = Robot('/dev/ttyACM0','/dev/ttyACM1','/dev/ttyACM2')
# les deux cylindres en haut (P2 et P3)
robot.allerA((730, 1580))
robot.goToCylindreLocal((850, 1800), True)
robot.goToCylindreLocal((850, 1900), True)
robot.bouge(-100, 0)
# Gobelet G2 + dépose dans la zone de départ
robot.allerA((690, 1050))
robot.goToCylindreLocal((910, 1170), False)
# robot.bouge(0, -900)
# robot.allerAangle((600, 1000), 1800)
# robot.allerA((250, 1000))
# robot.com.appelDescenteActionneurGobeletDerriere()
# # Gobelet G1 + Cylindres P4 et P5
# robot.allerA(( 450, 450))
示例4: Robot
# 需要导入模块: from Robot import Robot [as 别名]
# 或者: from Robot.Robot import goToCylindreLocal [as 别名]
# -*- coding: utf-8 -*-
from Robot import Robot
import time
robot = Robot('/dev/ttyACM0','/dev/ttyACM1','/dev/ttyACM2')
# les deux cylindres en haut (P12 et P13)
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)