1

pyserialを介してシリアルデバイスからデータをキャプチャできます。現時点では、データをテキストファイルにエクスポートすることしかできません。テキストファイルの形式は次のようになり、3つの列があります。

>21 21 0 
>
>41 41 0.5
>
>73 73 1
>    
....
>2053 2053 5
>
>2084 2084 5.5
>
>2125 2125 6

ここで、matplotlibを使用してライブグラフを生成したいと思います。2つの図(x、y)x、yは2番目と3番目の列、最初の列、'>'であり、データのない行は削除できます

皆さんありがとう!

============================

更新:今日、からこれらのガイドに従ってください

http://www.blendedtechnologies.com/realtime-plot-of-arduino-serial-data-using-python/231 http://eli.thegreenplace.net/2008/08/01/matplotlib-with-wxpython-guis pyserial-シリアルデバイスから送信された最後の行を読み取る方法

今、私はスレッディングでプロットを生きることができますが、このGuisは毎回単一の値しかプロットしないと言いました。これは非常に大きな制限につながります。私の目的は2列または3列をプロットすることであるため、コードは混合技術から変更されました。

これがシリアルハンドラーです:スレッドからインポートスレッド

import time
import serial

last_received = ''
def receiving(ser):
    global last_received
    buffer = ''
    while True:
        buffer = buffer + ser.read(ser.inWaiting())
        if '\n' in buffer:
            lines = buffer.split('\n') # Guaranteed to have at least 2 entries
            last_received = lines[-2]
            #If the Arduino sends lots of empty lines, you'll lose the
            #last filled line, so you could make the above statement conditional
            #like so: if lines[-2]: last_received = lines[-2]
            buffer = lines[-1]


class SerialData(object):
    def __init__(self, init=50):
        try:
            self.ser = ser = serial.Serial(
                port='/dev/ttyS0',
                baudrate=9600,
                bytesize=serial.EIGHTBITS,
                parity=serial.PARITY_NONE,
                stopbits=serial.STOPBITS_ONE,
                timeout=0.1,
                xonxoff=0,
                rtscts=0,
                interCharTimeout=None
            )
        except serial.serialutil.SerialException:
            #no serial connection
            self.ser = None
        else:
            Thread(target=receiving, args=(self.ser,)).start()

    def next(self):
        if not self.ser:
            return 100  #return anything so we can test when Arduino isn't connected
                #return a float value or try a few times until we get one
        for i in range(40):
            raw_line = last_received[1:].split(' ').pop(0)
            try:
                return float(raw_line.strip())
            except ValueError:
                print 'bogus data',raw_line
                time.sleep(.005)
        return 0.
    def __del__(self):
        if self.ser:
            self.ser.close()

if __name__=='__main__':
    s = SerialData()
    for i in range(500):
        time.sleep(.015)
        print s.next()

私の場合、このセグメントを変更して、最初の列のデータを取得できるようにしました

for i in range(40):
                raw_line = last_received[1:].split(' ').pop(0)
                try:
                    return float(raw_line.strip())
                except ValueError:
                    print 'bogus data',raw_line
                    time.sleep(.005)
            return 0.

GUIファイルでこれらの関数に基づいてグラフを生成します

from Arduino_Monitor import SerialData as DataGen
def __init__(self):
        wx.Frame.__init__(self, None, -1, self.title)

        self.datagen = DataGen()
        self.data = [self.datagen.next()]

.................................................

def init_plot(self):
        self.dpi = 100
        self.fig = Figure((3.0, 3.0), dpi=self.dpi)

        self.axes = self.fig.add_subplot(111)
        self.axes.set_axis_bgcolor('black')
        self.axes.set_title('Arduino Serial Data', size=12)

        pylab.setp(self.axes.get_xticklabels(), fontsize=8)
        pylab.setp(self.axes.get_yticklabels(), fontsize=8)

        # plot the data as a line series, and save the reference 
        # to the plotted line series
        #
        self.plot_data = self.axes.plot(
            self.data, 
            linewidth=1,
            color=(1, 1, 0),
            )[0]

したがって、次の質問は、少なくとも2列をリアルタイムで取得し、2列のデータをGUIに渡して、2軸のグラフを生成する方法です。

self.plot_data.set_xdata(np.arange(len(self.data)))  #my 3rd column data
self.plot_data.set_ydata(np.array(self.data))        #my 2nd column data
4

3 に答える 3

2

さて、これはあなたの文字列を読み取り、数値を浮動小数点数に変換します。必要に応じてこれを適応させることができると思います。

import numpy as np
import pylab as plt

str = '''>21 21 0 
>
>41 41 0.5
>
>73 73 1
>
>2053 2053 5
>
>2084 2084 5.5
>
>2125 2125 6'''
nums = np.array([[float(n) for n in sub[1:].split(' ') if len(n)>0] for sub in str.splitlines() if len(sub)>1])

fig = plt.figure(0)
ax = plt.subplot(2,1,1)
ax.plot(nums[:,0], nums[:,1], 'k.')
ax = plt.subplot(2,1,2)
ax.plot(nums[:,0], nums[:,2], 'r+')
plt.show()
于 2011-11-29T08:48:20.613 に答える
1

ここに、シリアルポートから到着するデータをプロットする方法のEliBenderskyの例があります

于 2011-11-25T22:55:27.763 に答える
0

しばらく前に私は同じ問題を抱えていました。私は何度も何度も同じことを書くのを無駄にしました。だから私はそれのためにPythonパッケージを書きました。

https://github.com/girish946/plot-cat

シリアルポートからデータを取得するためのロジックを作成するだけです。

例はここにあります:https ://github.com/girish946/plot-cat/blob/master/examples/test-ser.py

于 2016-08-26T16:28:26.147 に答える