如何更改机器人向后的持续时间

时间:2017-05-30 14:30:38

标签: python time controls robot

我只是想知道是否有人可以帮助我。我通过 Raspberry Pi使用Python 控制机器人,并想知道如何更改机器人向后移动的时间。它目前在半秒钟,我希望它是三秒钟。我已经列出了我目前使用的以下代码。

An unknown server-side error occurred while processing the command. 
Original error: Could not find a connected Android device. 
(Selenium::WebDriver::Error::UnknownError)

1 个答案:

答案 0 :(得分:0)

从我所看到的,现在的时间是(" 0")加上0.500("半秒")。 要改为3秒,你需要做"现在"加上" 3"。

试试这个并告诉我们!

import time
from gopigo import *
import sys

now = time.time()
future = now + 3

while time.time() < future:
    bwd()

stop()
sys.exit()