4

我有以下代码将在单击 PyQt 中的“开始”按钮后开始:

def Start(self):
  import time
  import os
  import RPi.GPIO as GPIO
  import datetime

  GPIO.setmode(GPIO.BCM)
  DEBUG = 1

  os.system('clear')

  # SPI port on GPIO
  SPICLK = 18
  SPIMISO = 23
  SPICS = 25

  # set up the SPI interface pins
  GPIO.setup(SPIMISO, GPIO.IN)
  GPIO.setup(SPICLK, GPIO.OUT)
  GPIO.setup(SPICS, GPIO.OUT)

  GPIO.output(SPICS, True)
  GPIO.output(SPICS, False) # bring CS low
  while True:
        adcout = 0             
        read_adc = 0
        #s=time.clock()
        for i in range(25):
            GPIO.output(SPICLK, True)
            GPIO.output(SPICLK, False)
            adcout <<= 1
            if (GPIO.input(SPIMISO)==1):
                adcout |= 0x1
        time.sleep(0.085)   
        if (GPIO.input(SPIMISO)==0):
            read_adc = adcout
            millivolts = read_adc * ( 2500.0 /(pow(2,22)))
            read_adc = "%d" % read_adc
            millivolts = "%d" % millivolts

        if DEBUG:
            print millivolts, "mV (ADC)"

上面的程序用于 ADC 读取,它会在单击名为“开始”的按钮后启动,如下所示:self.pushButton.clicked.connect( self.Start)

我还有另一个pushButton_2叫做“停止”,通过点击这个,上面的过程应该停止。请建议,所以我可以做到这一点。

4

2 回答 2

5

除了我在您关于此主题的其他问题中建议的内容外,无需执行任何操作:只需使用processEvents. 只要您可以足够频繁地调用它(但不是频繁),它就应该完全按照您的意愿行事。使用您的第二个示例,以下对我来说很好:

  def Start(self):
    if not self.started:
        self.started = True
        self.StartLoop()

  def Stop(self):
    if self.started:
        self.started = False

  def StartLoop(self):
    DEBUG = 1
    while self.started:
        print "LED on "
        time.sleep(0.05)
        print "LED off "
        time.sleep(0.085)
        QtGui.qApp.processEvents()
于 2014-04-14T16:57:37.947 回答
-1
  1. 这个问题很有用:tkinter loop and serial write它可以通过两个更改来复制:master.update成为QtGui.qApp.processEventsmaster.after成为QTimer.singleShot

  2. 这是如何使用guiLoop完成您要求的操作的草图:

    from guiLoop import guiLoop, stopLoop
    # ... means fill in your code
    class ...: 
        started = False
    
        def Start(self):
            if not self.started:
                # you can also use threads here, see the first link
                self.started = self.StartLoop()
    
        def Stop(self):
            if self.started:
                stopLoop(self.started)
                self.started = False
    
        @guiLoop
        def StartLoop(self):
            # This is your Start function
            # ...
            while True:
                # ...
                yield 0.085 # time.sleep(0.085) equivalent
                # ...
    

    由于我不知道您的代码是什么样的,因此这是一个使用 PyQT4 和guiLoop的工作示例:

    from PyQt4 import QtGui
    import sys
    
    from guiLoop import guiLoop # https://gist.github.com/niccokunzmann/8673951
    
    @guiLoop
    def led_blink(argument):
        while 1:
            print("LED on " + argument)
            yield 0.5 # time to wait
            print("LED off " + argument)
            yield 0.5
    
    app = QtGui.QApplication(sys.argv)
    
    w = QtGui.QWidget()
    w.resize(250, 150)
    w.move(300, 300)
    w.setWindowTitle('Simple')
    w.show()
    
    led_blink(w, 'shiny!')
    
    sys.exit(app.exec_())
    

    guiLoop用于QTimer.singleShot(time, function)使循环继续。

    您也可以使用stopLoop()guiLoop 停止循环。

于 2014-04-14T10:38:43.710 回答