参考の記事
http://kuc-arc-f.com/agri/?product=product-post-3
========================================================
ARDUINO - RasPi で、シリアル通信行い。
水分センサ値の送信、などを行います。
#code
https://github.com/kuc-arc-f/arduino-mc-typ-03b
*) 回路図など
http://kuc-arc-f.com/agri/?doc=03-c-2-7-valve
# センサ値取得、シリアル送信
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; | |
iSen=analogRead(SENSOR); | |
iSen2 =analogRead(SENSOR_1); | |
iSen3 =analogRead(SENSOR_2); | |
iSen4 =analogRead(SENSOR_3); | |
String sSen = String(iSen); | |
String sSen2 = String(iSen2); | |
String sSen3 = String(iSen3); | |
String sSen4 = String(iSen4); | |
sSen = get_zeroStr(sSen ,4); | |
sSen2 = get_zeroStr(sSen2 ,4); | |
sSen3 = get_zeroStr(sSen3 ,4); | |
sSen4 = get_zeroStr(sSen4 ,4); | |
String sMc_id = get_zeroStr(MC_ID, 4); | |
String sPut="put_dat="; | |
sPut.concat(sMc_id); //mc | |
sPut.concat(sSen); | |
sPut.concat(sSen2); | |
sPut.concat(sSen3); | |
sPut.concat(sSen4); | |
sPut.concat("0000"); | |
Serial.println(sPut); | |
*) 開発者向けのまとめ記事
0 件のコメント:
コメントを投稿