Python if语句延迟
Python if statement delay
我正在尝试制作一个 'game',同时了解 Python 和 Raspberry Pi 上的 GPIO。这是我的 ATM:
while playing == 1:
if (GPIO.input(9) == 0):
GPIO.output(18, GPIO.LOW)
print("Well done!!")
time.sleep(1)
else:
print("Wrong!")
lives = lives - 1
time.sleep(1)
playing = 0
现在,我的问题是程序正在执行 if 语句并直接进入 else(如您所料),但是,我希望程序在 if 语句的第一部分等待第二,然后去else.
提前致谢!
也许你可以这样重写:
while playing == 1:
for _ in range(10):
if GPIO.input(9) == 0:
GPIO.output(18, GPIO.LOW)
print("Well done!!")
break
time.sleep(0.1)
else:
print("Wrong!")
lives = lives - 1
这会以 100 毫秒的间隔轮询 GPIO 引脚十次。如果 GPIO 引脚在十次尝试中都保持高电平,则 else
被击中。
(如果您还没有遇到 Python 的 for
-else
构造,请参阅 Why does python use 'else' after for and while loops?。)
或者,您可以使用 GPIO
模块的更高级功能,例如边缘检测和回调。见 documentation.
我正在尝试制作一个 'game',同时了解 Python 和 Raspberry Pi 上的 GPIO。这是我的 ATM:
while playing == 1:
if (GPIO.input(9) == 0):
GPIO.output(18, GPIO.LOW)
print("Well done!!")
time.sleep(1)
else:
print("Wrong!")
lives = lives - 1
time.sleep(1)
playing = 0
现在,我的问题是程序正在执行 if 语句并直接进入 else(如您所料),但是,我希望程序在 if 语句的第一部分等待第二,然后去else.
提前致谢!
也许你可以这样重写:
while playing == 1:
for _ in range(10):
if GPIO.input(9) == 0:
GPIO.output(18, GPIO.LOW)
print("Well done!!")
break
time.sleep(0.1)
else:
print("Wrong!")
lives = lives - 1
这会以 100 毫秒的间隔轮询 GPIO 引脚十次。如果 GPIO 引脚在十次尝试中都保持高电平,则 else
被击中。
(如果您还没有遇到 Python 的 for
-else
构造,请参阅 Why does python use 'else' after for and while loops?。)
或者,您可以使用 GPIO
模块的更高级功能,例如边缘检测和回调。见 documentation.