OWON SDS7102からpythonで波形取得...できたらいいなーと思っている。VISAをあきらめてSocketでやる。
で、このへんを参考に、とりあえずこんな感じで、
- import socket
- HOST='192.168.125.63'
- PORT=3000
- controller=socket.socket(socket.AF_INET, socket.SOCK_STREAM)
- controller.connect((HOST,PORT))
- send_message='STARTBIN'
- controller.send(send_message.encode())
- msg=controller.recv(1024)
- print(msg)
するってーと
runfile('D:/Documents/python3/owon_sds_downloader/test1.py', wdir='D:/Documents/python3/owon_sds_downloader')
b'\x8c\x0c\x00\x00\x00\x00\x00\x00\x81\x00\x00\x00SPBS02e\x00\x11\x80SDS71021513711\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x03\xcdO\xc3Gs\x00e.\x00\x00\x00;CH1\xd8\xf9\xff\xff\x02\x00\x00\x00\x00\x00\x00\x00\xf8\x02\x00\x00\xf8\x02\x00\x00\xf8\x02\x00\x00\n\x00\x00\x00\x00\x00\x00\x00\x05\x00\x00\x00\x01\x00\x00\x00\xcd\xcc\xcc=\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80@\xff\xff\x00\x00\x00\x00\xff\xff\xff\xff\x00\x00\x00\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x00\x00\x00\x00\xff\xff\x00\x00\x00\x00\xff\xff\xff\xff\x00\x00\xff\xff\x00\x00\xff\xff\x00\x00\xff\xff\xff\xff\xff\xff\x00\x00\xff\xff\xff\xff\x00\x00\xff\xff\x00\x00\x00\x00\xff\xff\x00\x00\x00\x00\xff\xff\xff\xff\x00\x00\x00\x00\x00\x00\x00\x00\xff\xff\x00\x00\x00\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x00\x00\x00\x00\x00\x00\x00\x00\xff\xff\x00\x00\xff\xff\xff\xff\xff\xff\x00\x00\x00\x00\xff\xff\x00\x00\x00\x00\x00\x00\xff\xff\x00\x00\xff\xff\xff\xff\xff\xff\xff\xff\x00\x00\xff\xff\x00\x00\x00\x00\x00\x00\xff\xff\x00\x00\x00\x00\x00\x00\xff\xff\x00\x00\x00\x00\xff\xff\xff\xff\x00\x00\x00\x00\xff\xff\x00\x00\xff\xff\x00\x00\xff\xff\x00\x00\x00\x00\xff\xff\xff\xff\xff\xff\xff\xff\x00\x00\x00\x00\xff\xff\x00\x00\xff\xff\xff\xff\xff\xff\x00\x00\xff\xff\x00\x00\x00\x00\xff\xff\xff\xff\xff\xff\x00\x00\xff\xff\xff\xff\x00\x00\xff\xff\xff\xff\x00\x00\xff\xff\x00\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x00\x00\xff\xff\x00\x00\x00\x00\x00\x00\xff\xff\x00\x00\x00\x00\x00\x00\x00\x00\xff\xff\xff\xff\x00\x00\xff\xff\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x00\x00\xff\xff\x00\x00\x00\x00\xff\xff\x00\x00\x00\x00\x00\x00\xff\xff\xff\xff\xff\xff\xff\xff\x00\x00\x00\x00\xff\xff\x00\x00\xff\xff\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xff\xff\x00\x00\x00\x00\xff\xff\xff\xff\x00\x00\x00\x00\xff\xff\x00\x00\xff\xff\xff\xff\xff\xff\x00\x00\x00\x00\x00\x00\xff\xff\x00'
こうなるので、何となくうまくいっている。ここから設定やら波形データを取り出せばいいはず。正直どうしたもんやらですが、OWONのSDSのページからLabView用のソフトがダウンロードできるので、それを参考にする。LabVIEWなんて基本的には絶対に使いたくない(※1)のだけど、最近、LabVIEW Community Editionというのが出て、「自宅プロジェクトは仕事との関連が一切ない」なら使っていいらしい。そもそも会社でLabVIEWなんて絶対に使う気はないし、OWONのコードを見るだけなので、インストールする。
で、いろんな説明に従ってインストール(※2)し、そして、起動。そして開く。
※1 : LabVIEW大好きな方々を否定する気はないです。一度にたくさんの情報を見たいという理由で、.cでも.cppでも.inoでも.pyでも.mでもコメントを最小限にしている私にあの画面はとんでもなくつらいってだけ。
※2 : 基本ソフトだけ入れたいのに勝手におまけを入れておいて、おまけのライセンスが期間限定ですって言ってくるところがなんだかなーって思う。
プロジェクトツリーが開くので、それらしいやつ(acquire single wave 2.0 by LAN.vi)をダブルクリッック。
で、とりあえず実行してみる。
で、なんか波形が取れているっぽいのがわかる。では、中身はどうなっているのか?こうすれば見れる...(一見さんをよせつけないこの仕様がなんとも)
で、こうなるんだけど、これ見てパっと何しているかわかる人いるのかね...LabVIEW食わず嫌いの私にはさっぱり。
とりあえず、左側のowon的なアイコンをダブルクリックしてみる。
で、Show Block Diagram
お、STARTBINをTCPにぶっこんでいる...それっぽいゾ
最初のTCPアイコンで、右クリックでプロパティを見ると「TCP Write」ってなってる。そのあとは、「TCP Read」「TCP Write」「TCP Read」ってつながってて、「TCP Read」にぶっこんでる値は(そうっとマウスを近づけると)「bytes to read」らしい。
よし、実行させて値を見てみよう...ブレークポイントってどうやんの...?
とりあえず最初のTCPで止めよう。TCPを右クリックして、出てくるメニューで「Breakpoint」からの「Set Breakpoint」で。枠が赤くなる。で、本体に戻って実行してみる。1つ目のTCPが点滅して止まったっぽい。で、線の上にマウスを持っていくと、アイコンがPって感じになるのでつつくと、Probe Watch Windowというのが現れて値が見れる。
なんじゃもんじゃやってみると、最初にSTARTBINを送って、とりあえず12Bytes受信して、最初の2バイトをunsigned intとしてみて、STARTBINで何Bytes送られてくるのかを判断して、もう一度STARTBINを送って、残りを正しいバイト数で受信しているみたい。もうLabVIEW見たくないので、とりあえず、ここまでpythonでやってみよー。
- import numpy as np
- import socket
- HOST='192.168.125.63'
- PORT=3000
- controller=socket.socket(socket.AF_INET, socket.SOCK_STREAM)
- controller.connect((HOST,PORT))
- controller.settimeout(2)
- send_message='STARTBIN'
- controller.send(send_message.encode())
- rcvlen=12
- bufpos=0
- msg_array=[]
- while bufpos<rcvlen:
- msg=controller.recv(1)
- msg_array=np.append(msg_array,np.frombuffer(msg,dtype=np.uint8))
- if bufpos==1:
- rcvlen=msg_array[0]+msg_array[1]*256+rcvlen
- bufpos=bufpos+1
参考にしたLabVIEWとかなり違った仕様で書いてしまいましたが、まぁ気分屋なのでってことで。で、
ってなるので、データをとるところまではできてるっぽい。ちなみにrcvlenを更新しているところ(19行目)で+rcvlen-1ってして、ループが終わったところでもう一回msgl=controller.recv(1024)ってすると
ってなって、msg_arrayのサイズが1減って、msglがサイズ1になるので、最初のコードでちゃんととりきっていることがわかりました。よし。
で、このブロックまではやり切っておく。
の部分は2回目の受信データの3番目から(pythonでは受信データを分割していないので15番目から)値8(='S')3を探して、そこから10個の値で文字列を作って、マゼンタの配列にある文字列のうちどれがあるかを検索している。
で、
- indexes_S=np.array(np.where(msg_array==83)[0])
- indexes_S=indexes_S[np.where(indexes_S>=(12+3))]
- indexindicator_array=msg_array[indexes_S[0]:indexes_S[0]+10:]
- indexindicator_bytes=indexindicator_array.tobytes()
- indexindicator_str=indexindicator_bytes.decode(errors='ignore')
- if ('S07' in indexindicator_str):
- timebase_index_out=0
- elif ('S01' in indexindicator_str):
- timebase_index_out=1
- elif ('S08' in indexindicator_str):
- timebase_index_out=2
- elif ('S03' in indexindicator_str):
- timebase_index_out=3
- elif ('S04' in indexindicator_str):
- timebase_index_out=4
- elif ('S05' in indexindicator_str):
- timebase_index_out=5
- elif ('S06' in indexindicator_str):
- timebase_index_out=6
- elif ('S09' in indexindicator_str):
- timebase_index_out=7
- elif ('S02' in indexindicator_str):
- timebase_index_out=8
- elif ('S0C' in indexindicator_str):
- timebase_index_out=9
- elif ('S0A' in indexindicator_str):
- timebase_index_out=10
- elif ('S0B' in indexindicator_str):
- timebase_index_out=11
- else:
- timebase_index_out=0
ちょっとまどろっこしいけど、こんなんで。
最後にここまでのコードをまとめるとこうなる。
- import numpy as np
- import socket
- HOST='192.168.125.63'
- PORT=3000
- controller=socket.socket(socket.AF_INET, socket.SOCK_STREAM)
- controller.connect((HOST,PORT))
- controller.settimeout(2)
- send_message='STARTBIN'
- #send_message='STARTMEMDEPTH'
- controller.send(send_message.encode())
- rcvlen=12
- bufpos=0
- msg_array=np.empty(0,dtype='uint8')
- while bufpos<rcvlen:
- msg=controller.recv(1)
- msg_array=np.append(msg_array,np.frombuffer(msg,dtype=np.uint8))
- if bufpos==1:
- rcvlen=msg_array[0]+msg_array[1]*256+rcvlen
- bufpos=bufpos+1
- indexes_S=np.array(np.where(msg_array==83)[0])
- indexes_S=indexes_S[np.where(indexes_S>=(12+3))]
- indexindicator_array=msg_array[indexes_S[0]:indexes_S[0]+10:]
- indexindicator_bytes=indexindicator_array.tobytes()
- indexindicator_str=indexindicator_bytes.decode(errors='ignore')
- if ('S07' in indexindicator_str):
- timebase_index_out=0
- elif ('S01' in indexindicator_str):
- timebase_index_out=1
- elif ('S08' in indexindicator_str):
- timebase_index_out=2
- elif ('S03' in indexindicator_str):
- timebase_index_out=3
- elif ('S04' in indexindicator_str):
- timebase_index_out=4
- elif ('S05' in indexindicator_str):
- timebase_index_out=5
- elif ('S06' in indexindicator_str):
- timebase_index_out=6
- elif ('S09' in indexindicator_str):
- timebase_index_out=7
- elif ('S02' in indexindicator_str):
- timebase_index_out=8
- elif ('S0C' in indexindicator_str):
- timebase_index_out=9
- elif ('S0A' in indexindicator_str):
- timebase_index_out=10
- elif ('S0B' in indexindicator_str):
- timebase_index_out=11
- else:
- timebase_index_out=0
LabVIEWとの格闘はまだまだつづくかもしれないしつづかないかもしれない。
コメントをお書きください