我正在尝试编写一个python gui,我需要做一个实时绘图。我现在有一个程序从我正在使用的机器上接收数据,我想能够绘制机器在接收数据时输出的值我一直在研究,从目前所发现的情况来看,在我看来,tkinter或任何库都不能在图形用户界面中做到这一点有没有人知道Tkinter是否能做到这一点,以及如何做到这一点,或者是否有另一个图书馆能够做到这一点?
另外,在接收数据时,我如何将收集到的数据写入文件?
提前谢谢你的帮助。

最佳答案

看起来您是通过轮询获得数据的,这意味着您不需要线程或多个进程。只需在首选接口上轮询设备并绘制单个点。
下面是一个带有一些模拟数据的例子来说明这个总体思路。它每100毫秒更新一次屏幕。

import Tkinter as tk
import random

class ServoDrive(object):
    # simulate values
    def getVelocity(self): return random.randint(0,50)
    def getTorque(self): return random.randint(50,100)

class Example(tk.Frame):
    def __init__(self, *args, **kwargs):
        tk.Frame.__init__(self, *args, **kwargs)
        self.servo = ServoDrive()
        self.canvas = tk.Canvas(self, background="black")
        self.canvas.pack(side="top", fill="both", expand=True)

        # create lines for velocity and torque
        self.velocity_line = self.canvas.create_line(0,0,0,0, fill="red")
        self.torque_line = self.canvas.create_line(0,0,0,0, fill="blue")

        # start the update process
        self.update_plot()

    def update_plot(self):
        v = self.servo.getVelocity()
        t = self.servo.getTorque()
        self.add_point(self.velocity_line, v)
        self.add_point(self.torque_line, t)
        self.canvas.xview_moveto(1.0)
        self.after(100, self.update_plot)

    def add_point(self, line, y):
        coords = self.canvas.coords(line)
        x = coords[-2] + 1
        coords.append(x)
        coords.append(y)
        coords = coords[-200:] # keep # of points to a manageable size
        self.canvas.coords(line, *coords)
        self.canvas.configure(scrollregion=self.canvas.bbox("all"))

if __name__ == "__main__":
    root = tk.Tk()
    Example(root).pack(side="top", fill="both", expand=True)
    root.mainloop()

08-28 04:32