RPi上的Raspbian - Python脚本在IDLE shell中运行,但不在cmd中运行

时间:2014-12-09 11:24:04

标签: python linux shell raspberry-pi raspbian

我编写了这个脚本,可以同时以不同的间隔打开和关闭GPIO引脚。它适用于IDLE shell,但不能从cmd访问:sudo python onoff.py

没有线程的类似脚本在cmd中工作正常。 (只需打开和关闭一个GPIO)

import RPi.GPIO as GPIO  
from time import sleep  
import thread

GPIO.setmode(GPIO.BOARD)  

GPIO.setup(11, GPIO.OUT)  
GPIO.setup(13, GPIO.OUT)  
GPIO.setup(15, GPIO.OUT)  

def fast():  
    while True:  
        GPIO.output(11, True)  
        sleep(.02)  
        GPIO.output(11, False)  
        sleep(.02)  

def med():
    while True:
        GPIO.output(13, True)
        sleep(.2)
        GPIO.output(13, False)
        sleep(.2)

def slow():
    while True:
        GPIO.output(15, True)
        sleep(2)
        GPIO.output(15, False)
        sleep(2)

thread.start_new_thread(fast,())
thread.start_new_thread(med,())
thread.start_new_thread(slow,())

1 个答案:

答案 0 :(得分:0)

通过Chris

计算出来

"它是因为没有主程序/循环。你的代码启动那些线程,但随后它将到达代码的末尾并退出运行python的进程,从而终止线程。所以也许可以在底部添加一个raw_input("按Enter退出")。"