参考の記事
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使ってます。
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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]) ) |
データ部分、センサ値(4個),マイコンID
をセットして、post送信
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
*) 開発者向けのまとめ記事
http://knaka0209.blogspot.jp/2015/04/agri.html
0 件のコメント:
コメントを投稿