我只是想知道是否有人可以帮助我。我通过 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)
答案 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()