========================================================
参考の記事
http://kuc-arc-f.com/agri/?product=product-post-4
========================================================
mbed- RasPi で、シリアル通信行い。
水分センサ値の送信、などを行います。
#code
https://github.com/kuc-arc-f/mbed-mc-typ-04
# センサ値取得、シリアル送信
今回は、float値を 1000倍して、
intでキャストし、整数を送信してます。
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
int iSen =0; | |
int iSen2 =0; | |
int iSen3 =0; | |
int iSen4 =0; | |
float fSen = inSen1; | |
float fSen2 = inSen2; | |
float fSen3 = inSen3; | |
float fSen4 = inSen4; | |
iSen = int(fSen * 1000); | |
iSen2 = int(fSen2 * 1000); | |
iSen3 = int(fSen3 * 1000); | |
iSen4 = int(fSen4 * 1000); | |
char buff[]="0000"; | |
string sPut="put_dat="; | |
sPut += conv_zeroStr(MC_ID ,4); | |
sprintf(buff, "%d", iSen); | |
sPut +=conv_zeroStr(buff ,4); | |
sprintf(buff, "%d", iSen2); | |
sPut +=conv_zeroStr(buff ,4); | |
sprintf(buff, "%d", iSen3); | |
sPut +=conv_zeroStr(buff ,4); | |
sprintf(buff, "%d", iSen4); | |
sPut +=conv_zeroStr(buff ,4); | |
mPc.printf("%s\n", sPut.c_str() ); |
*) 開発者向けのまとめ記事
http://knaka0209.blogspot.jp/2015/04/agri.html
0 件のコメント:
コメントを投稿