========================================================
参考の記事
========================================================
アナログ入力で、
センサ値を取得し。シリアル通信で RasPi へ送信します。
code:
piout を参考に、アナログ入力で使えるピン番号探します
アナログ入力の定義など、
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
Serial mPc(USBTX, USBRX); | |
Timer mTimer; | |
AnalogIn inSen1(dp13); | |
AnalogIn inSen2(dp11); | |
AnalogIn inSen3(dp10); | |
AnalogIn inSen4(dp9 ); |
センサ値を取得して、シリアル出力します。
float で、0 - 1 まで、取得できて、この場合 1000倍して
シリアル出力してます
float で、0 - 1 まで、取得できて、この場合 1000倍して
シリアル出力してます
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
float fSen = inSen1; | |
iSen = int(fSen * 1000); | |
char buff[]="0000"; | |
string sPut="put_dat="; | |
sPut += conv_zeroStr(MC_ID ,4); | |
sprintf(buff, "%d", iSen); | |
mPc.printf("%s\n", sPut.c_str() ); |
*) 回路図,setup など
http://kuc-arc-f.com/agri/?doc=blog-1-a
*) 開発者向けのまとめ記事
http://knaka0209.blogspot.jp/2015/04/agri.html
0 件のコメント:
コメントを投稿