head

2015年4月28日火曜日

[blog-1] pythonプロセス(シリアル受信、parse送信)

========================================================
参考の記事
http://kuc-arc-f.com/agri/?blog=blog-1
========================================================

mbedマイクロコンピュータから
シリアル通信でセンサ値を取得し。クラウド(parse.com)送信します。
RasPi上の pythonプロセスで処理行います。

code:
https://github.com/kuc-arc-f/python-blog-parse

シリアル読み込み、
val=ser.readline()

マイコンからの、センサ値の送信プロトコルの場合、
プロトコルを解析/ディクショナリに格納
http送信ライブラリは requests使ってます。

if __name__ == "__main__":
ser=serial.Serial(mDevice ,9600)
clsParam = com_getparam.getparamClass()
clsCom = com_func.funcClass()
clsParse =com_putParse.putParseClass()
clsLog = com_logging2.loggingClass()
from datetime import datetime
tmBef = datetime.now()
while True:
val=ser.readline()
bFrom = clsParam.Is_fromMC(val)
if bFrom==True:
dic= clsParam.getDict(val)
sTime = datetime.now().strftime("%Y%m%d%H%M%S")
tmNow = datetime.now()
tmSpan = tmNow - tmBef
iSpan = tmSpan.total_seconds()
print "iSpan="+ str(iSpan)
if iSpan > mTimeMax:
tmBef = datetime.now()
try:
clsParse.send_parse(dic, sTime)
except:
print "--------------------------------------------"
print traceback.format_exc(sys.exc_info()[2])
print "--------------------------------------------"
clsLog.debug( traceback.format_exc(sys.exc_info()[2]) )
view raw gistfile1.txt hosted with ❤ by GitHub
ヘッダ、parseのKeyなど
データ部分、センサ値(4個),マイコンID
をセットして、post送信

headers = {
"X-Parse-Application-Id": clsConst.mParse_APP_ID ,
"X-Parse-REST-API-Key": clsConst.mParse_REST_ID ,
"Content-Type": "application/json"
}
dtParam ={'mc_id': int(dict["mc_id"]) }
dtParam["snum1"] = int(dict["snum_1"])
dtParam["snum2"] = int(dict["snum_2"])
dtParam["snum3"] = int(dict["snum_3"])
dtParam["snum4"] = int(dict["snum_4"])
dtParam["dtnum"] = int(sTime)
r = requests.post('https://api.parse.com/1/classes/SenObject1', headers=headers , data=json.dumps(dtParam), timeout=30)
print r.status_code
view raw gistfile1.txt hosted with ❤ by GitHub


*) 開発者向けのまとめ記事
http://knaka0209.blogspot.jp/2015/04/agri.html

0 件のコメント:

コメントを投稿

google colaboratory お試し編 、GPUも使える機械学習の環境構築

前回続き、機械学習の関連となります。 開発環境まわりの内容となり。先人様の情報を元に調査しました。 google colab(google colaboratory) を試してみました。機械学習系の いくつかのライブラリがインストール済みで、 クラウド上で、ある程度機械学...

AD-parts

Shop
Bluetooth搭載
ベース基板

Social