参考の記事
http://kuc-arc-f.com/agri/?product=product-post-2
========================================================
EtherNet 機能対応の、ARDUINOで
web(クラウド、web service)との I/O部分です。
*) ARDUNO Ethernet シールド / WIFI モジュール 付ARDUINO などで使用可能
code:
https://github.com/kuc-arc-f/arduino-mc-typ-01b/blob/master/mc-typ-01/mc-typ-01.ino
Tutorial - WebClient
http://www.arduino.cc/en/Tutorial/WebClient
#送信
入力可能なセンサ系デバイス値などから、Webサービス
( 最近でいう、IoT: Internet Of Thongs )
へ、アナログ値など送信可能
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 (Ethernet.begin(mac) == 0) { | |
Serial.println("Failed to configure Ethernet using DHCP"); | |
Ethernet.begin(mac, ip); | |
} | |
if (client.connect(server, 80)) { | |
Serial.println("connected"); | |
String sReq= "GET /api-123.php?param=123"; | |
sReq.concat(" HTTP/1.1"); | |
client.println(sReq); | |
client.println("Host: www.google.com"); | |
client.println("Connection: close"); | |
client.println(); | |
} | |
else { | |
Serial.println("connection failed"); | |
} |
デバイス制御で使うには、プロトコルの解析が必要
Loop 内で client.read()で、1文字読込が可能
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
void loop() | |
{ | |
if (client.available()) { | |
char c = client.read(); | |
Serial.print(c); | |
} | |
if (!client.connected()) { | |
Serial.println(); | |
Serial.println("disconnecting."); | |
client.stop(); | |
} | |
} |
http://knaka0209.blogspot.jp/2015/04/agri.html
0 件のコメント:
コメントを投稿