0

我正在开展一个项目,该项目涉及使用 DHT22 传感器读取温度和湿度。

我想在 GUI 上显示这些值,并不断更新 GUI 上的值。

我也想让这个脚本在启动时启动。

我已经通过将 sensorstartup.desktop 文件添加到 ~./config/autostart 来实现启动脚本并显示 GUI,该文件由指向 sudo python /home/pi/GUISENSOR.py 的 sh 脚本组成

我遇到的问题是它不会在启动时更新 GUI,GUI 出现但没有更新,但是如果我手动运行它 sudo python /home/pi/GUISENSOR.py,它会正确运行和更新。

任何建议将不胜感激。

下面是代码示例

class App(threading.Thread):

def _init_(self):
    threading.Thread._init_(self)
    self.start()
def callback(self):
    self.root.quit()
def run(self):
    self.root = Tk() #Makes the window
    self.root.wm_title("Temperature Monitor") 
    self.root.minsize(200,100)

    #Left Frame and its contents
    leftFrame = Frame(self.root, width=200, height = 600)
    leftFrame.grid(row=0, column=0, padx=10, pady=2)

    Label(leftFrame, text="Equiptment").grid(row=0, column=0, padx=10, pady=2)

    self.equipTemp = DoubleVar()
    Label(leftFrame, textvariable=self.equipTemp).grid(row=5, column=0, padx=10, pady=2)
    Label(leftFrame, text="deg F").grid(row=5, column=1, padx=10, pady=2)

    self.root.mainloop() #start monitoring and updating the GUI


app = App()
app.start()

# Continuously append data
while(True):

    # Run the DHT program to get the humidity and temperature readings!
    output = subprocess.check_output(["./temp_sensor"]);

    matches = re.search("Temp =\s+([0-9.]+)", output)
    if (not matches):
      time.sleep(3)
      continue
    tempC = float(matches.group(1))
    tempF = tempC * 1.8 + 32
    tempF = round(tempF)
    tempF = int(tempF)

    print "Temperature: %.1f F" % tempF


    if tempC > max_temp:
      oos += 1
    elif tempC < min_temp:
      oos += 1
    else:
      oos = 0

    if oos > bad_readings:
      oos = 0
      emailer(email_addr, room_subject + " " + str(tempF) + " degF " )



    app.equipTemp.set(tempF)


    # Wait 30 seconds before continuing
    time.sleep(30)
4

0 回答 0